-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.91 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
59
60
61
62
63
{
"name": "client",
"version": "0.1.0",
"type": "module",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.20.0",
"https": "^1.0.0",
"logrocket": "^1.0.12",
"node-sass": "^7.0.0",
"npm-run-all": "^4.1.5",
"react": "^16.13.1",
"react-beautiful-dnd": "^13.0.0",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.13.1",
"react-fontawesome": "^1.7.1",
"react-router": "^6.0.0-alpha.4",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.3",
"react-tiny-popover": "^5.1.0",
"react-toastify": "^6.0.0-rc.3",
"socket.io": "^2.5.0",
"socket.io-client": "^2.3.0"
},
"scripts": {
"start": "npm-run-all -p -r server client",
"server": "node server.js",
"client": "cross-env PORT=3000 react-scripts start",
"build": "react-scripts build",
"deploy": "git pull && yarn build && cp -Tr build prod",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"proxy": "https://localhost:3002",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/dom": ">=5",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^10.4.9",
"@testing-library/user-event": "^12.1.3",
"cross-env": "^7.0.2"
}
}