-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.49 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
{
"name": "wildhacks-2017-backend",
"version": "1.0.0",
"description": "Backend services for WildHacks 2017 at Northwestern University",
"repository": {
"type": "git",
"url": "https://github.com/brandonfujii/wildhacks-2017-backend.git"
},
"main": "index.js",
"engines": {
"node": "6.11.0"
},
"scripts": {
"postinstall": "./node_modules/.bin/flow-typed install",
"test": "NODE_ENV=test jest --forceExit --verbose",
"start:dev": "gulp build; node build",
"start:prod": "gulp build; NODE_ENV=production node build",
"start:forever": "NODE_ENV=production forever start build",
"gulp:build": "gulp build",
"gulp:watch": "gulp watch",
"gulp:flow": "gulp flow",
"gulp": "gulp",
"db:create": "node bin/create_db",
"db:destroy": "node bin/drop_db",
"db:migrate": "./node_modules/.bin/sequelize db:migrate",
"flow-assets": "./node_modules/.bin/flow-typed install",
"lint": "./node_modules/.bin/eslint src/**/*.js"
},
"author": "WildHacks <[email protected]>",
"license": "ISC",
"dependencies": {
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "7.1.1",
"babel-plugin-transform-flow-strip-types": "6.21.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-polyfill": "6.23.0",
"babel-preset-env": "1.6.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-latest": "6.16.0",
"babel-preset-stage-0": "6.24.1",
"babel-register": "6.24.1",
"bcryptjs": "2.4.3",
"body-parser": "1.17.2",
"chalk": "2.1.0",
"child_process": "1.0.2",
"crypto": "0.0.3",
"debug": "2.6.8",
"dotenv": "4.0.0",
"dropbox": "2.5.7",
"eslint": "4.2.0",
"eslint-plugin-flowtype": "2.34.1",
"express": "4.15.3",
"express-mung": "0.4.6",
"flow-bin": "0.49.1",
"flow-typed": "2.1.5",
"forever": "0.15.3",
"fs": "0.0.1-security",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-flowtype": "1.0.0",
"gulp-sourcemaps": "2.6.0",
"helmet": "3.6.1",
"http": "0.0.0",
"jest": "20.0.4",
"jsonwebtoken": "7.4.1",
"lodash": "4.17.4",
"method-override": "2.3.9",
"mime": "1.3.6",
"multer": "1.3.0",
"mysql2": "1.3.5",
"path": "0.12.7",
"redis": "2.8.0",
"response-time": "2.3.2",
"rolling-rate-limiter": "0.1.10",
"semver": "5.4.1",
"sendgrid": "5.2.1",
"sequelize": "4.2.1",
"sequelize-cli": "2.7.0",
"superagent": "3.5.2",
"supertest": "3.0.0",
"uuid": "3.1.0",
"webpack": "3.5.5"
}
}