-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 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
43
44
45
{
"name": "fulljs",
"version": "1.0.0",
"description": "Learning Fullstack JavaScript Development: 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/jscomplete/learn-fullstack-javascript.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/jscomplete/learn-fullstack-javascript/issues"
},
"homepage": "https://github.com/jscomplete/learn-fullstack-javascript#readme",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"ejs": "^2.6.1",
"express": "^4.16.4",
"mongodb": "^3.1.13",
"node-sass-middleware": "^0.11.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0"
},
"devDependencies": {
"@babel/node": "7.x",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"eslint": "^5.12.1",
"eslint-plugin-react": "^7.12.4",
"nodemon": "^1.18.9",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
}
}