-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 1.01 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
{
"name": "shellgeibot",
"private": true,
"main": "dist/main.js",
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "tsc --outDir ./dist",
"prestart": "npm run build",
"postbuild": "npm run copy-compose-yml",
"start": "TZ=Asia/Tokyo node --enable-source-maps dist/main.js",
"start:dev": "NODE_ENV=development npm run start",
"start:production": "NODE_ENV=production npm run start",
"copy-compose-yml": "cat ./src/executor/docker-compose.yml > ./dist/executor/docker-compose.yml",
"preshellgei": "npm run build",
"shellgei": "node -e \"require('./dist/executor/execShellgei.js').execShellgei(process.argv[1]).then((d) => console.log(d))\""
},
"dependencies": {
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^20.4.1",
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"morgan": "^1.10.0",
"tree-kill": "1.2.2",
"typescript": "^5.1.6",
"zx": "^7.2.3"
},
"engines": {
"node": ">=18.0.0"
}
}