-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 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
42
43
44
45
{
"name": "node-typescript-skeleton",
"version": "0.0.1",
"private": true,
"scripts": {
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"start": "npm run prod",
"server": "node ./dist/bin/www",
"prod": "NODE_ENV=production npm-run-all build server",
"dev": "NODE_ENV=development ts-node ./server/bin/www",
"watch": "nodemon"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "^4.18.2",
"morgan": "~1.9.1"
},
"nodemonConfig": {
"exec": "npm run dev",
"execMap": "ts-node",
"watch": [
"server/*",
"public/*"
]
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"eslint": "^8.33.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.9.5"
}
}