-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 KB
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
{
"name": "js-node-react-mongodb",
"version": "1.0.0",
"description": "First attempt a node, express, react and mongoldb stack",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node server.js --ignore public/",
"dev": "webpack -wd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/believerjo/js-node-react-mongodb.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/believerjo/js-node-react-mongodb/issues"
},
"homepage": "https://github.com/believerjo/js-node-react-mongodb#readme",
"dependencies": {
"ejs": "^2.5.8",
"express": "^4.16.3",
"json-loader": "^0.5.7",
"mongodb": "^3.0.4",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.18.2",
"eslint-plugin-react": "^7.7.0",
"nodemon": "^1.17.2",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12"
}
}