-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.15 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
{
"dependencies": {
"@unifiprotocol/utils": "^2.3.4",
"apicache": "^1.6.3",
"cors": "^2.8.5",
"express": "^4.17.2",
"http-proxy-middleware": "^2.0.3",
"morgan": "^1.10.0",
"node-fetch": "2"
},
"devDependencies": {
"@types/apicache": "^1.6.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.19",
"@types/node-fetch": "^2.6.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"scripts": {
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"watch": "nodemon --watch \"src/**\" --ext \"ts,json\" --exec",
"tsc": "tsc --incremental",
"build": "tsc --incremental",
"build:balancer": "tsc --incremental && node scripts/validate_worker_urls_env.js",
"build:watch": "yarn watch yarn build",
"start": "node dist/index.js",
"start:watch": "yarn watch node -r ts-node/register --inspect=9300 src/index.ts",
"start:balancer": "node dist/balancer.js",
"start:balancer:watch": "yarn watch node -r ts-node/register --inspect=9301 src/balancer.ts"
}
}