forked from jsynowiec/node-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.03 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
{
"name": "node-typescript-boilerplate",
"version": "0.0.0",
"description": "Minimalistic boilerplate to quick-start Node.js development in TypeScript.",
"engines": {
"node": ">= 10.13 <11"
},
"devDependencies": {
"@types/jest": "^24.0.0",
"@types/node": "^10.14.0",
"jest": "~24.8.0",
"prettier": "~1.17.0",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.0",
"tslint": "~5.16.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "~6.1.0",
"tsutils": "~3.10.0",
"typescript": "~3.4.0"
},
"scripts": {
"main": "npm run build & node build/src/main.js",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Jakub Synowiec <github@jakubsynowiec.info>",
"license": "Apache-2.0",
"dependencies": {
"tslib": "~1.9.3",
"commander":"^2.20.0"
}
}