forked from prairiedogshr/fridgeapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.71 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "fridgeapp",
"version": "1.0.0",
"description": "An app for roomate productivity",
"main": "app.jsx",
"scripts": {
"test": "jest",
"dev": "webpack -d --watch",
"build": "webpack -p",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prairiedogshr/fridgeapp.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/prairiedogshr/fridgeapp/issues"
},
"homepage": "https://github.com/prairiedogshr/fridgeapp#readme",
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-airbnb": "^2.2.3",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-1": "^6.22.0",
"css-loader": "^0.28.0",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"jest": "^19.0.2",
"redux-devtools": "^3.3.2",
"style-loader": "^0.16.1",
"url-loader": "^0.5.8",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"axios": "^0.16.0",
"babel-eslint": "^7.2.2",
"babel-polyfill": "^6.23.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.17.1",
"bookshelf": "^0.10.3",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"express-mysql-session": "^1.2.0",
"express-session": "^1.15.2",
"history": "^4.6.1",
"human-readable-ids": "^1.0.1",
"knex": "^0.12.9",
"material-ui": "^0.17.3",
"morgan": "^1.8.1",
"mysql": "^2.13.0",
"nodemailer": "^4.0.1",
"passport": "^0.3.2",
"passport-google-oauth20": "^1.0.0",
"passport-local": "^1.0.0",
"passport-paypal-oauth": "^0.1.0",
"path": "^0.12.7",
"paypal-express-checkout": "^1.6.0",
"react": "^15.4.2",
"react-bootstrap": "^0.30.8",
"react-cookie": "^1.0.5",
"react-d3": "^0.4.0",
"react-dom": "^15.4.2",
"react-flexbox-grid": "^1.0.2",
"react-material-ui-form-validator": "^0.2.1",
"react-redux": "^5.0.3",
"react-router": "^4.0.0",
"react-router-dom": "^4.0.0",
"react-router-redux": "^5.0.0-alpha.4",
"react-sortable-hoc": "^0.6.2",
"react-swipeable-views": "^0.12.0",
"react-tap-event-plugin": "^2.0.1",
"recharts": "^0.22.1",
"redux": "^3.6.0",
"redux-form": "^6.0.0-rc.3",
"redux-persist": "^4.6.0",
"redux-thunk": "^2.2.0",
"underscore": "^1.8.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}