-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.47 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "pingpong",
"version": "0.0.1",
"description": "-",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve.dev": "nodemon dist/index.js --ignore '*.json' --watch",
"build.dev": "rimraf dist && node ./node_modules/eslint/bin/eslint.js -c .eslintrc.js --ext .ts . --fix && tsc -w",
"build.prod": "rimraf dist && node ./node_modules/eslint/bin/eslint.js -c .eslintrc.js --ext .ts . --fix && tsc",
"serve.prod": "node dist/index.js"
},
"author": "M Gilang Januar",
"license": "MIT",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
"@types/express": "^4.17.6",
"@types/morgan": "^1.9.0",
"@types/node-json-db": "^0.9.3",
"@types/pidusage": "^2.0.1",
"@types/pug": "^2.0.4",
"@types/source-map-support": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"lodash": "^4.17.20",
"nodemon": "^2.0.3",
"pug": "^2.0.4",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"moment": "^2.24.0",
"morgan": "^1.10.0",
"node-json-db": "^1.0.3",
"pidusage": "^2.0.18",
"session": "^0.1.0",
"source-map-support": "^0.5.16"
}
}