-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
executable file
·78 lines (78 loc) · 1.98 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
{
"name": "",
"version": "",
"description": "",
"author": "",
"license": "",
"engines": {
"node": ">=6.4.0"
},
"scripts": {
"postinstall": "webpack -p",
"react-dev": "webpack -d --watch",
"server-dev": "nodemon ./server/index.js",
"test": "npm run test:mocha && npm run test:jest",
"test:mocha": "mocha test/backendSpec.js --reporter nyan --exit",
"test:jest": "jest",
"db:setup": "node database/example-data/seedDatabase.js"
},
"dependencies": {
"axios": "^0.17.1",
"babel-cli": "^6.7.5",
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-preset-airbnb": "^2.4.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.7.2",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"classnames": "^2.2.5",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"eslint": "^4.11.0",
"express": "^4.16.2",
"js-combinatorics": "^0.5.2",
"material-ui": "^0.19.4",
"material-ui-pickers": "^1.0.0-beta.4",
"mocha": "^4.0.1",
"moment": "^2.19.2",
"pg": "^7.4.0",
"prop-types": "^15.6.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-promise": "^0.5.3",
"sequelize": "^4.22.6",
"underscore": "^1.8.3",
"webpack": "^3.8.1"
},
"devDependencies": {
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"jest": "^21.2.1",
"mocha": "^4.0.1",
"node-mocks-http": "^1.6.6",
"nodemon": "^1.12.1",
"path": "^0.12.7",
"supertest": "^3.0.0"
},
"babel": {
"presets": [
"es2015"
]
},
"jest": {
"verbose": true,
"testMatch": [
"**/test/frontendSpec.js"
]
}
}