-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.47 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.47 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
50
51
52
53
54
55
56
57
58
{
"name": "express-react-starter",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/dkdev030/express-react-starter.git"
},
"proxy": "http://localhost:3001",
"scripts": {
"start": "concurrently \"react-scripts start\" \"nodemon server/server.js\"",
"build:linux": "react-scripts build && mv build ./server",
"build:win32": "react-scripts build && move build ./server",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"keywords": [
"react",
"express"
],
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"debug": "~4.3.1",
"express": "^4.17.1",
"jade": "^1.11.0",
"morgan": "^1.10.0",
"helmet": "^4.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"concurrently": "^6.2.0",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"react-scripts": "4.0.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}