-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.37 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
{
"name": "food-swap",
"version": "0.1.0",
"description": "Swap food with friends",
"author": "Hayden Marx, Calvin Wong, Alex Choi",
"license": "",
"engines": {
"node": ">=6.4.0"
},
"scripts": {
"start": "node server/index.js",
"scss": "sass --watch react-client/src/scss:react-client/dist/style/",
"webpack": "webpack -d --watch",
"server": "nodemon server/index.js"
},
"dependencies": {
"axios": "^0.17.1",
"body-parser": "^1.18.2",
"connect-flash": "^0.1.1",
"express": "^4.16.2",
"express-session": "^1.15.6",
"font-awesome": "^4.7.0",
"moment": "^2.20.1",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg-promise": "^7.3.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-fontawesome": "^1.6.1",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.7.2",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"express": "^4.16.2",
"webpack": "^3.10.0"
}
}