-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.39 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
{
"name": "",
"version": "",
"description": "",
"author": "",
"license": "",
"engines": {
"node": ">=6.4.0"
},
"scripts": {
"start": "nodemon server/index.js",
"wp": "webpack --w",
"postinstall": "webpack -p",
"test": "mocha"
},
"dependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.7.5",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.7.2",
"bcrypt-nodejs": "0.0.3",
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.0",
"body-parser": "^1.18.2",
"bootstrap": "^3.3.7",
"css-loader": "^0.28.7",
"dotenv": "^4.0.0",
"express": "^4.16.1",
"express-session": "^1.15.6",
"jquery": "^3.2.1",
"mongodb": "^2.2.31",
"mongoose": "^4.11.13",
"mysql": "^2.14.1",
"mysql2": "^1.4.2",
"node": "^8.3.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-router-dom": "^4.2.2",
"request": "^2.83.0",
"sequelize": "^4.13.3",
"style-loader": "^0.18.2",
"url-loader": "^0.6.2",
"webpack": "^3.6.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"mocha": "^3.5.3",
"nodemon": "^1.12.1"
},
"babel": {
"presets": [
"es2015",
"react"
]
}
}