-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.14 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.14 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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "api-one",
"version": "1.0.0",
"description": "REST API BUILDER",
"main": "index.js",
"repository": "https://github.com/Celleb/api-one.git",
"author": "Jonas Tomanga",
"license": "MIT",
"scripts": {
"watch": "gulp watch",
"start": "node dist/index.js",
"build": "gulp scripts && gulp tests",
"test": "nyc mocha --reporter spec --compilers ts:ts-node/register 'test/**/*.spec.ts'",
"watch-tests": "mocha -r ts-node/register 'src/**/*.spec.ts' --watch --watch-extensions ts",
"watch-e2e": "DEBUG=e2e mocha -r ts-node/register 'e2e/**/*.spec.ts' --watch --watch-extensions ts 'e2e/**/*.ts'"
},
"dependencies": {
"body-parser": "^1.18.2",
"compression": "^1.7.1",
"csurf": "^1.9.0",
"express": "^4.16.2",
"helmet": "^3.9.0",
"lodash": "^4.17.4",
"method-override": "^2.3.10",
"mongoose": "^5.0.0-rc0",
"morgan": "^1.9.0",
"reflect-metadata": "^0.1.10",
"tsjs-di": "^1.0.1"
},
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/chai": "^4.0.10",
"@types/chai-as-promised": "^7.1.0",
"@types/chai-http": "0.0.29",
"@types/compression": "^0.0.35",
"@types/csurf": "^1.9.35",
"@types/debug": "^0.0.30",
"@types/express": "^4.11.0",
"@types/helmet": "^0.0.37",
"@types/lodash": "^4.14.92",
"@types/method-override": "^0.0.31",
"@types/mocha": "^2.2.44",
"@types/mongoose": "^4.7.31",
"@types/morgan": "^1.7.35",
"@types/node": "^8.5.2",
"@types/reflect-metadata": "^0.0.5",
"@types/sinon": "^4.1.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.0.0",
"debug": "^3.1.0",
"fancy-log": "^1.3.2",
"gulp": "^3.9.1",
"gulp-flatten": "^0.3.1",
"gulp-mocha": "^4.3.1",
"gulp-typescript": "^3.2.3",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"sinon": "^4.1.3",
"source-map-support": "^0.5.0",
"ts-node": "^6.1.1",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"nyc": {
"extension": [
"src/**/*.ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"src/**/*.spec.ts",
"test/**",
"*.js"
],
"all": true
}
}