-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.08 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.08 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
{
"name": "node-typescript-vscode",
"version": "0.0.1",
"scripts": {
"start": "npm run serve:ts",
"serve:dev": "npm run nodemon -- --inspect=5858 --config ./nodemon.json --exec {{pwd}}/node_modules/.bin/ts-node ./src/index.ts",
"serve:prod": "node ./dist/index.js",
"build:prod": "npm run compile:prod",
"compile:prod": "npm run tsc -- -p ./tsconfig.json",
"clean:prod": "npm run rimraf -- ./dist/**/*",
"lint": "npm run tslint -- -c ./tslint.json -p ./tsconfig.json",
"lint:fix": "npm run tslint -- -c ./tslint.json -p ./tsconfig.json --fix",
"test": "exit 0",
"ci:travis": "npm run lint && npm run test && npm run build:prod",
"nodemon": "./node_modules/.bin/nodemon",
"tslint": "./node_modules/.bin/tslint",
"rimraf": "./node_modules/.bin/rimraf",
"tsc": "./node_modules/.bin/tsc"
},
"devDependencies": {
"@types/node": "^8.0.28",
"nodemon": "^1.12.1",
"rimraf": "^2.6.2",
"ts-node": "^3.3.0",
"tslib": "^1.7.1",
"tslint": "^5.7.0",
"typescript": "^2.5.2"
},
"dependencies": {
"zone.js": "^0.8.17"
}
}