-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.44 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
{
"name": "the-pickup-list",
"version": "0.1.0",
"description": "An awesome shopping list app using the MERN (MongoDB/Express/React/Node) Stack, plus probably some Socket.IO.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start-front": "webpack-dev-server -d",
"start-back": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MatthewNichols/ThePickupList.git"
},
"keywords": [
"shopping",
"list-management"
],
"author": "Matthew Nichols & Friends",
"license": "MIT",
"bugs": {
"url": "https://github.com/MatthewNichols/ThePickupList/issues"
},
"homepage": "https://github.com/MatthewNichols/ThePickupList#readme",
"dependencies": {
"axios": "^0.12.0",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"mongoose": "^4.5.3",
"react": "^15.2.0",
"react-dom": "^15.2.0",
"react-redux": "^4.4.5",
"react-router": "^2.5.2",
"redux": "^3.5.2",
"redux-promise": "^0.5.3"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.23.1",
"node-sass": "^3.8.0",
"nodemon": "^1.9.2",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}