-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.69 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.69 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
{
"name": "ts-node-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon dist/index.js",
"test": "cross-env NODE_ENV=test mocha --reporter spec --compilers ts:ts-node/register test/**/*.test.ts",
"build": "gulp build",
"watch": "gulp"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/body-parser": "^1.16.0",
"@types/chai": "^3.4.35",
"@types/chai-http": "0.0.30",
"@types/config": "0.0.32",
"@types/debug": "0.0.29",
"@types/express": "^4.0.35",
"@types/gulp": "^4.0.2",
"@types/gulp-sourcemaps": "0.0.30",
"@types/gulp-typescript": "^2.13.0",
"@types/jsonwebtoken": "^7.2.0",
"@types/lodash": "^4.14.64",
"@types/mocha": "^2.2.41",
"@types/mockery": "^1.4.29",
"@types/mongoose": "^4.7.11",
"@types/multer": "0.0.33",
"@types/node": "^7.0.8",
"@types/sinon": "^2.2.1",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"cross-env": "^4.0.0",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^2.5.1",
"gulp-typescript": "^3.1.5",
"mocha": "^3.4.2",
"mockery": "^2.0.0",
"path": "^0.12.7",
"sinon": "^2.2.0",
"ts-node": "^2.1.0",
"typescript": "^2.2.1"
},
"dependencies": {
"body-parser": "^1.17.1",
"config": "^1.25.1",
"debug": "^2.6.3",
"es6-promise": "^4.1.0",
"express": "^4.15.2",
"express-jwt": "^5.1.0",
"inversify": "^4.1.0",
"inversify-express-utils": "^3.5.2",
"jsonwebtoken": "^7.3.0",
"lodash": "^4.17.4",
"log4js": "^1.1.1",
"mongoose": "^4.9.5",
"multer": "^1.3.0",
"mysql": "^2.13.0",
"nodemon": "^1.11.0",
"reflect-metadata": "^0.1.10"
}
}