-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·74 lines (74 loc) · 2.01 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
{
"name": "Scheggie",
"version": "",
"description": "Meal planner for vegetarians",
"author": "Vegtastic Voyagers",
"license": "",
"engines": {
"node": ">=6.4.0"
},
"scripts": {
"start": "nodemon server/index.js --inspect & webpack --watch",
"buildInitialData": "node databases/populateIdDatabaseScript.js",
"buildFullData": "node databases/saveRecipesToDB.js",
"heroku-postbuild": "webpack -p --progress"
},
"dependencies": {
"async": "^2.5.0",
"blob-stream": "^0.1.3",
"body-parser": "^1.17.2",
"brfs": "^1.4.3",
"express": "^4.15.4",
"express-session": "^1.15.5",
"flexbox-react": "^4.4.0",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"material-ui": "^0.18.7",
"material-ui-search-bar": "^0.3.0",
"mocha": "^2.3.1",
"mongo-client": "^0.2.1",
"mongodb": "^2.2.31",
"mongoose": "^4.11.6",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"pdfkit": "^0.8.3",
"react": "^15.6.1",
"react-dnd": "^2.4.0",
"react-dnd-html5-backend": "^2.4.1",
"react-dom": "^15.6.1",
"react-facebook-login": "^3.6.2",
"react-redux": "^5.0.6",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.7.2",
"redux-storage": "^4.1.2",
"redux-storage-engine-localstorage": "^1.1.4",
"redux-thunk": "^2.2.0",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"transform-loader": "^0.2.4"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.25.0",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.7.2",
"chai-http": "^1.0.0",
"chai": "^4.1.1",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"mocha": "^3.5.0",
"should": "^11.2.1",
"enzyme": "^2.9.1",
"jest": "^20.0.4",
"webpack": "^3.5.1"
},
"babel": {
"presets": [
"es2015"
]
}
}