forked from gsilber/NodeTypescriptStarter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.37 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
{
"name": "nodetscstarter",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.1",
"@types/express": "^4.17.1",
"@types/node": "^12.7.11",
"nodemon": "^1.19.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"ts-node-dev": "^1.0.0-pre.43",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
},
"scripts": {
"clean": "rimraf dist/*",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"build": "npm-run-all clean lint tsc",
"dev-deb": "ts-node-dev --respawn --transpileOnly --nolazy --inspect-brk=5858 ./src/server.ts",
"dev": "ts-node-dev --respawn --transpileOnly ./src/server.ts",
"prod": "npm-run-all build start",
"prod-deb": "npm-run-all start-deb",
"start": "nodemon --nolazy ./dist/server.js",
"start-deb": "nodemon --nolazy --inspect-brk=5858 ./dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gsilber/NodeTypescriptStarter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gsilber/NodeTypescriptStarter/issues"
},
"homepage": "https://github.com/gsilber/NodeTypescriptStarter#readme"
}