-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "blog-api",
"version": "1.0.0",
"description": "",
"main": "build/src/server.js",
"scripts": {
"start": "DEBUG=blog-api,express:* node build/src/server.js",
"prestart": "npm run build",
"build": "gulp build",
"test": "NODE_ENV=test DEBUG=blog-api gulp test",
"postinstall": "typings install",
"tsc": "tsc",
"tsc:w": "tsc -w",
"typings": "typings"
},
"dependencies": {
"body-parser": "^1.15.2",
"debug": "^2.2.0",
"documentdb": "^1.9.0",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"mongodb": "^2.2.5",
"mongoose": "~3.6.13",
"password-hash": "^1.2.2",
"reflect-metadata": "^0.1.4",
"routing-controllers": "^0.6.3",
"typedi": "^0.4.2",
"typescript": "^1.8.10"
},
"author": "",
"license": "ISC",
"devDependencies": {
"del": "^2.2.2",
"file-exists": "^2.0.0",
"gulp": "^3.9.1",
"gulp-filter": "^4.0.0",
"gulp-jasmine": "^2.4.0",
"gulp-rename": "^1.2.2",
"gulp-typescript": "^2.13.6",
"inversify-dts": "^1.6.0",
"jasmine": "^2.4.1",
"run-sequence": "^1.2.2",
"supertest": "^2.0.0"
}
}