-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·65 lines (65 loc) · 1.4 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "sample",
"version": "0.0.0",
"description": "",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"license": "Apache-2.0",
"keywords": [],
"nyc": {
"check-coverage": true,
"exclude": [
"**/*.js",
"build"
],
"reporter": [
"html",
"text"
],
"extension": [
".ts"
],
"all": true
},
"scripts": {
"start:dev": "nodemon",
"test": "jasmine-ts --config=jasmine.json",
"testWithCoverage": "nyc npm test",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": ""
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.1",
"@types/helmet": "0.0.42",
"@types/jasmine": "^3.3.9",
"@types/node": "^10.12.23",
"gts": "^0.9.0",
"jasmine": "^3.3.1",
"jasmine-spec-reporter": "^4.2.1",
"jasmine-ts": "^0.3.0",
"nodemon": "^1.18.9",
"nyc": "^13.3.0",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "~3.1.0"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.16.4",
"helmet": "^3.15.0",
"http-status-codes": "^1.3.0",
"inversify": "^5.0.1",
"inversify-express-utils": "^6.3.2",
"reflect-metadata": "^0.1.13"
}
}