-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 977 Bytes
/
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
{
"name": "reactive-sharks",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node app.js",
"lint": "eslint .",
"test": "./node_modules/.bin/mocha ./test/**.js",
"heroku-postbuild": "cd client/ && npm install --only=dev && npm install && npm run build"
},
"dependencies": {
"async": "^2.4.1",
"axios": "^0.16.1",
"body-parser": "~1.17.1",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"cookie-parser": "~1.4.3",
"cors": "^2.8.3",
"debug": "~2.6.3",
"express": "~4.15.2",
"jade": "~1.11.0",
"knex": "^0.13.0",
"knex-seed-file": "^0.3.1",
"mocha": "^3.4.1",
"morgan": "~1.8.1",
"nodemon": "^1.11.0",
"path": "^0.12.7",
"pg": "^6.2.2",
"serve-favicon": "~2.4.2"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1"
}
}