-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "hrla-fullstack-review",
"version": "1.0.0",
"author": "Hugo Dolemieux",
"license": "ISC",
"scripts": {
"start": "node sever/index.js",
"dev": "nodemon server/index.js",
"compile": "webpack --progress -w"
},
"dependencies": {
"axios": "^0.16.2",
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"morgan": "^1.8.2",
"pg": "^7.0.2",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"sequelize": "^4.4.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.4",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.1.0",
"file-loader": "^0.11.2",
"node-sass": "^4.5.3",
"nodemon": "^1.11.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.3.0"
}
}