-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.19 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.19 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
{
"name": "Study-O-Matic",
"version": "0.9.0",
"main": "server.js",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^7.2.1",
"cross-fetch": "^3.0.5",
"express": "^4.18.1",
"path": "^0.12.7",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-loading": "^2.0.3",
"react-router-dom": "5.2.0",
"react-scripts": "^5.0.1",
"sass": "^1.53.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"start": "concurrently \"npm run start:server\" \"npm run start:react\"",
"start:react": "react-scripts start",
"start:server": "node server.js",
"test": "react-scripts test"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^7.0.0",
"json-server": "^0.17.0"
}
}