-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.17 KB
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
{
"name": "08-simple-node-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=development LANG=ts mocha --require ts-node/register --watch-extensions ts __tests__/**/*.ts",
"build": "tsc && resolve-tspaths",
"start": "NODE_ENV=production LANG=js node ./build/bin/server.js | bunyan -o short",
"dev": "NODE_ENV=development LANG=ts ts-node-dev --respawn ./bin/server.ts | bunyan -o short",
"deploy": "npm run build && pm2 startOrRestart ecosystem.config.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/bunyan": "^1.8.11",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/ip": "^1.1.3",
"bunyan": "^1.8.15",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"ip": "^1.1.8",
"pm2": "^5.3.1",
"resolve-tspaths": "^0.8.17"
},
"devDependencies": {
"@types/module-alias": "^2.0.4",
"module-alias": "^2.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"_moduleAliases": {
"@": "./"
}
}