forked from EastCoastProduct/api-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.52 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
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node ./bin/www",
"dev-start": "nodemon ./bin/www",
"heroku-postbuild": "NODE_ENV=staging; ./staging.sh"
},
"engines": {
"node": ">=6.7 <7"
},
"author": "ECP",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EastCoastProduct/api-skeleton"
},
"dependencies": {
"aws-sdk": "^2.6.4",
"bcrypt": "^0.8.7",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"bunyan": "^1.8.4",
"bunyan-prettystream": "^0.1.3",
"bunyan-syslog": "github:mcavage/node-bunyan-syslog",
"connect": "^3.5.0",
"cors": "^2.8.1",
"debug": "^2.2.0",
"express": "^4.14.0",
"express-jwt": "^5.0.0",
"jsonwebtoken": "^7.1.9",
"lodash": "^4.15.0",
"multer": "^1.2.0",
"node-mocks-http": "^1.5.4",
"nodemailer": "^2.6.0",
"pg": "^6.1.0",
"sequelize": "^3.24.3",
"umzug":"^1.11",
"sequelize-cli": "^2.4.0",
"validator": "^5.7.0"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-eslint": "^3.0.1",
"gulp-istanbul": "^1.1.1",
"gulp-nodemon": "^2.1.0",
"gulp-shell": "^0.5.2",
"gulp-tape": "0.0.9",
"node-uuid": "^1.4.7",
"nodemon": "^1.10.2",
"postgres-cleaner": "^0.1.2",
"run-sequence": "^1.2.2",
"should": "^11.1.0",
"sinon": "^1.17.6",
"sinon-as-promised": "^4.0.2",
"supertest": "^2.0.0",
"tap-colorize": "^1.2.0",
"tape": "^4.6.0"
}
}