-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "full_stack2",
"version": "1.0.0",
"description": "Learning Fullstack Javascript Developmet: MongoDB, Node.js, React.js",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node server.js --ignore public/",
"dev": "webpack -wd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcialc/Full_Stack2.git"
},
"author": "Marcial Cabrera",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/marcialc/Full_Stack2/issues"
},
"homepage": "https://github.com/marcialc/Full_Stack2#readme",
"dependencies": {
"express": "^4.14.0",
"mongodb": "^3.1.4",
"react": "^16.5.0",
"react-dom": "^16.5.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^5.5.0",
"eslint-plugin-react": "^7.11.1",
"nodemon": "^1.18.4",
"webpack": "^4.17.2"
}
}