-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"private": true,
"name": "brer-controller",
"version": "0.0.0",
"description": "Controller component for Brer project",
"type": "module",
"scripts": {
"clean": "rimraf *.tsbuildinfo build",
"build": "npm run clean && tsc -p ./tsconfig.build.json",
"start": "npm run clean && npm run watch:build && npm run watch:start",
"test": "c8 ava",
"watch": "npm run clean && nodemon -w src -e ts --exec 'npm run watch:build && npm run watch:start'",
"watch:build": "tsc --incremental -p ./tsconfig.build.json",
"watch:start": "node --inspect -r source-map-support/register -r dotenv/config build/start.js dotenv_config_path=$npm_config_env"
},
"author": "Giacomo Gregoletto",
"license": "MIT",
"dependencies": {
"@kubernetes/client-node": "^0.21.0",
"close-with-grace": "^1.3.0",
"fastq": "^1.17.1",
"pino": "^9.1.0",
"undici": "^6.18.2"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@types/node": "^20.13.0",
"ava": "^6.1.3",
"c8": "^9.1.0",
"dotenv": "^16.4.5",
"nodemon": "^3.1.2",
"pino-pretty": "^11.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"source-map-support": "^0.5.21",
"tsx": "^4.11.0",
"typescript": "^5.4.5"
},
"ava": {
"typescript": {
"compile": "tsc",
"rewritePaths": {
"src/": "build/"
}
}
}
}