-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 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
46
47
{
"name": "my-project",
"version": "1.0.0",
"description": "Learning Fullstack JavaScript Development: MongoDB, Node.js, React.js",
"main": "index.js",
"scripts": {
"build:dev": "webpack",
"start": "nodemon --exec babel-node server.js --ignore public/",
"dev": "webpack -wd"
},
"keywords": [
"Node",
"MongoDB",
"React",
"Fullstack",
"Javascript"
],
"author": "stephen merth",
"license": "MIT",
"bugs": {
"url": "https://github.com/jscomplete/learn-fullstack-javascript/issues"
},
"homepage": "...",
"dependencies": {
"axios": "^0.16.2",
"ejs": "^2.5.6",
"express": "^4.15.3",
"json-loader": "^0.5.4",
"mongodb": "^2.2.28",
"node-sass-middleware": "0.9.8",
"react": "^15.6.0",
"react-dom": "^15.6.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.2.5",
"babel-preset-env": "^1.5.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.0.0",
"eslint-plugin-react": "^7.1.0",
"nodemon": "^1.11.0",
"webpack": "^2.6.1"
}
}