-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 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
48
49
{
"name": "express-react-template",
"version": "1.0.0",
"description": "Express and React template",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "cross-env NODE_ENV=\"production\" webpack --config client/webpack.config.js -p",
"dev": "cross-env NODE_ENV=\"development\" nodemon --ignore ./client/ index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codingjlu/express-react-template.git"
},
"keywords": [
"express",
"react",
"template",
"babel",
"webpack"
],
"author": "codingjlu",
"license": "MIT",
"bugs": {
"url": "https://github.com/codingjlu/express-react-template/issues"
},
"homepage": "https://github.com/codingjlu/express-react-template#readme",
"dependencies": {
"express": "^4.17.3",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@svgr/webpack": "^6.2.1",
"babel-loader": "^8.2.3",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.15",
"url-loader": "^4.1.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-middleware": "^5.3.1",
"webpack-hot-middleware": "^2.25.1"
}
}