-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
{
"name": "ts-express-boilerplate",
"version": "0.11.0",
"description": "A boilerplate",
"main": "",
"scripts": {
"start": "node dist/index.js",
"test": "mocha --reporter min --compilers ts:ts-node/register 'test/**/*.test.ts' --watch"
},
"author": "Popniten",
"license": "MIT",
"devDependencies": {
"@types/bcryptjs": "^2.4.0",
"@types/body-parser": "^1.16.3",
"@types/chai": "^3.5.0",
"@types/chai-http": "0.0.30",
"@types/debug": "0.0.29",
"@types/express": "^4.0.35",
"@types/mocha": "^2.2.40",
"@types/morgan": "^1.7.32",
"@types/node": "^7.0.12",
"@types/request-promise": "^4.1.33",
"@types/sequelize": "^3.4.43",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"debug": "^2.6.3",
"gulp": "^3.9.1",
"gulp-livereload": "^3.8.1",
"gulp-nodemon": "^2.2.1",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-typescript": "^3.1.6",
"gulp-uglify": "^2.1.2",
"mocha": "^3.2.0",
"run-sequence": "^1.2.2",
"ts-node": "^3.0.2",
"tsify": "^3.0.1",
"typescript": "^2.2.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"express": "^4.15.2",
"express-handlebars": "^3.0.0",
"human-readable-ids": "^1.0.1",
"morgan": "^1.8.1",
"pg": "^6.1.5",
"request-promise": "^4.2.1",
"sequelize": "^3.30.4"
},
"apidoc": {
"url" : "/api/v1/"
}
}