forked from jscomplete/learn-fullstack-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.21 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
{
"name": "learn-fullstack-javascript",
"version": "1.0.0",
"description": "For an up-to-date configuration guide: [jscomplete.com/reactful](https://jscomplete.com/reactful)",
"main": "index.js",
"scripts": {
"start": "node --exec babel-node server.js --ignore public/",
"dev": "webpack -wd"
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imsolayman/learn-fullstack-javascript.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/imsolayman/learn-fullstack-javascript/issues"
},
"homepage": "https://github.com/imsolayman/learn-fullstack-javascript#readme",
"dependencies": {
"express": "^4.17.1",
"mongodb": "^3.4.0",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^6.7.2",
"eslint-plugin-react": "^7.17.0",
"nodemon": "^2.0.2",
"webpack": "^4.41.4"
}
}