-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.15 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "notekeeper",
"version": "0.1.0",
"private": true,
"author": "codeBestard",
"license": "ISC",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"core-js": "^2.4.1",
"ejs": "^2.5.6",
"express": "4.15.2",
"express-serve-static-core": "^0.1.1",
"express-session": "^1.15.3",
"mime": "^1.3.6",
"mongoose": "^4.11.1",
"mongoose-validator": "^1.3.2",
"morgan": "^1.8.2",
"node-fetch": "^1.7.1",
"request": "^2.81.0",
"rotating-file-stream": "^1.2.2",
"serve-favicon": "^2.4.3",
"serve-static": "^1.12.3",
"winston": "^2.3.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.8",
"@types/body-parser": "^1.16.3",
"@types/chai": "^4.0.1",
"@types/chai-as-promised": "^0.0.31",
"@types/cookie-parser": "^1.3.30",
"@types/core-js": "^0.9.41",
"@types/ejs": "^2.3.33",
"@types/express": "^4.0.36",
"@types/express-serve-static-core": "^4.0.48",
"@types/express-session": "^1.15.0",
"@types/mime": "^1.3.1",
"@types/mocha": "^2.2.41",
"@types/mongoose": "^4.7.18",
"@types/morgan": "^1.7.32",
"@types/nock": "^8.2.1",
"@types/node": "^8.0.1",
"@types/node-fetch": "^1.6.7",
"@types/request": "^0.0.45",
"@types/serve-favicon": "^2.2.28",
"@types/serve-static": "^1.7.31",
"@types/sinon": "^2.3.2",
"@types/supertest": "^2.0.1",
"@types/winston": "^2.3.3",
"chai": "^4.0.2",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.0.1",
"mocha": "^3.4.2",
"nock": "^9.0.13",
"nyc": "^11.0.3",
"sinon": "^2.3.6",
"source-map-support": "^0.5.0",
"supertest": "^3.0.0",
"ts-node": "^3.2.0",
"typescript": "^2.4.1"
},
"scripts": {
"start": "node ./build/server",
"clean": "rimraf node_modules/",
"test": "nyc mocha",
"build": "tsc",
"ts": "tsc --watch"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}