-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.05 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
{
"name": "turret",
"version": "1.0.0",
"description": "",
"main": "dist/index.mjs",
"scripts": {
"start": "NODE_OPTIONS='--dns-result-order=ipv4first' node .",
"start:watch": "NODE_OPTIONS='--dns-result-order=ipv4first' nodemon --inspect=0.0.0.0:9230 .",
"build": "tsc || exit 0",
"build:watch": "tsc --watch --preserveWatchOutput",
"dev": "NODE_OPTIONS='--dns-result-order=ipv4first' concurrently npm:build:watch pnpm:start:watch",
"prod": "npm run build && npm run start",
"test": "mocha"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"dependencies": {
"@types/cors": "^2.8.17",
"@types/dockerode": "^3.3.29",
"@types/express": "^4.17.21",
"@types/http-proxy": "^1.17.14",
"@types/js-yaml": "^4.0.9",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"dockerode": "^4.0.2",
"express": "^4.19.2",
"http-proxy": "^1.18.1",
"ioredis": "^5.4.1",
"js-yaml": "^4.1.0",
"nodemon": "^3.1.0"
}
}