-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 948 Bytes
/
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
{
"name": "ts-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run lint && tsc",
"clean": "rm -rf dist",
"start": "node -r dotenv/config ./dist/app.js",
"test": "jest --collectCoverage --detectOpenHandles --forceExit",
"watch-test": "jest --watch --detectOpenHandles --forceExit",
"watch-node": "nodemon -r dotenv/config ./dist/app.js",
"watch-ts": "tsc -w",
"coverage": "open ./coverage/lcov-report/index.html",
"lint": "tslint --fix -c tslint.json 'src/**/*.ts'"
},
"author": "Eduardo Chaves <educostachaves@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.18",
"jest": "^24.9.0",
"nodemon": "^1.19.1",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"typescript": "^3.5.3"
},
"dependencies": {
"@types/node": "^12.7.2",
"dotenv": "^8.1.0",
"express": "^4.17.1"
}
}