-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.5 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.5 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
{
"name": "thinkshake-api",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "PORT=5000 $(npm bin)/babel-node ./bin/www",
"debug": "PORT=5000 NODE_ENV=development DEBUG=thinkshake-api:* $(npm bin)/nodemon ./bin/www --exec $(npm bin)/babel-node",
"pretest": "npm run pretest:lint && npm run pretest:typecheck",
"pretest:lint": "$(npm bin)/eslint src",
"pretest:typecheck": "$(npm bin)/flow",
"__build": "$(npm bin)/babel ./bin/www -d dist && $(npm bin)/babel ./src -d dist/src",
"__serve": "node dist/bin/www.js",
"test": "$(npm bin)/mocha --compilers js:babel-register",
"sequelize": "$(npm bin)/sequelize"
},
"dependencies": {
"bcrypt": "^1.0.2",
"body-parser": "~1.17.1",
"express": "~4.15.2",
"express-validator": "^3.2.0",
"file-stream-rotator": "^0.1.0",
"http-status-codes": "^1.1.6",
"morgan": "~1.8.1",
"mysql": "^2.13.0",
"passport": "^0.3.2",
"passport-http-bearer": "^1.0.1",
"request-promise": "^4.2.1",
"sequelize": "^3.30.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"eslint": "^3.19.0",
"eslint-plugin-flowtype": "^2.33.0",
"flow-bin": "^0.45.0",
"mocha": "^3.3.0",
"nodemon": "^1.11.0",
"power-assert": "^1.4.2",
"sequelize-cli": "^2.7.0",
"sqlite3": "^3.1.8"
}
}