-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.14 KB
/
package.json
File metadata and controls
45 lines (45 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
43
44
45
{
"name": "react_workshop",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js",
"build": "webpack --progress --profile --colors",
"dev:client": "webpack-dev-server --hot --inline",
"dev": "npm-run-all --parallel start dev:client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lenmorld/react_workshop.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lenmorld/react_workshop/issues"
},
"homepage": "https://github.com/lenmorld/react_workshop#readme",
"dependencies": {
"axios": "^0.18.0",
"express": "^4.16.3",
"qs": "^6.6.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-loader": "^8.0.2",
"babel-preset-env": "^1.7.0",
"css-loader": "^1.0.0",
"nodemon": "^1.18.10",
"npm-run-all": "^4.1.5",
"style-loader": "^0.23.0",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.14"
}
}