forked from InteropIO/rest-config-example-node-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 882 Bytes
/
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
{
"name": "appconfig-simple-server",
"version": "1.0.2",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p ./tsconfig.json",
"start": "npm run build && node ./src/index.js",
"startDebug": "set DEBUG=express:* && npm run build && node ./src/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.5",
"@types/json5": "0.0.30",
"@types/morgan": "^1.9.1",
"@types/node": "^13.11.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"deepmerge": "^4.2.2",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"json5": "^2.1.3",
"log4js": "^6.3.0",
"morgan": "^1.10.0",
"util": "^0.12.2"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"typescript": "^3.8.3"
}
}