-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "node-typscript-clean-architecture",
"scripts": {
"lint": "tslint --project tsconfig.json",
"build": "rm -rf lib/ && tsc",
"serve": "npm run build && node lib/index.js",
"shell": "npm run build",
"start": "npm run shell",
"test": "nyc --reporter=text mocha --opts ./mocha.opts",
"ci-test": "npm i && npm run test",
"ci-coverage": "nyc report --reporter=text-lcov > coverage.lcov mocha --opts && codecov -t $CODECOV_TOKEN",
"ci-sonar": "bash run-sonar.sh"
},
"main": "lib/index.js",
"dependencies": {
"body-parser": "^1.18.3",
"debug": "^3.1.0",
"express": "^4.16.3",
"mongoose": "^5.1.3",
"morgan": "^1.9.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/cors": "^2.8.4",
"@types/mocha": "^5.2.0",
"@types/sinon": "^4.3.1",
"@types/sinon-chai": "^2.7.29",
"@types/uuid": "^3.4.3",
"chai": "^4.1.2",
"codecov": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.1.1",
"nyc": "^11.8.0",
"sinon": "^5.0.4",
"sinon-chai": "^3.0.0",
"source-map-support": "^0.5.6",
"ts-node": "^6.0.3",
"tslint": "^5.8.0",
"typescript": "^2.5.3"
},
"private": true
}