-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.86 KB
/
package.json
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
64
65
66
{
"name": "kbti-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^0.27.2",
"bootstrap": "^5.1.3",
"customize-cra": "^1.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-paginate": "^8.1.3",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"regenerator-runtime": "^0.13.9",
"web-vitals": "^2.1.4",
"workbox-cacheable-response": "^6.5.3",
"workbox-core": "^6.5.3",
"workbox-expiration": "^6.5.3",
"workbox-precaching": "^6.5.3",
"workbox-routing": "^6.5.3",
"workbox-strategies": "^6.5.3"
},
"scripts": {
"start": "NODE_ENV=development react-app-rewired start",
"build": "NODE_ENV=production react-app-rewired build",
"test": "react-scripts test",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src --fix",
"eject": "react-scripts eject",
"start-server": "json-server --watch fakeapis/listDefinition.json --port 3001",
"start-server2": "json-server --watch fakeapis/users.json --port 3002"
},
"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": {
"eslint": "^8.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"react-app-rewired": "^2.2.1",
"sass": "^1.52.1",
"sass-loader": "^13.0.0",
"webpack-pwa-manifest": "^4.3.0",
"workbox-webpack-plugin": "^6.5.3"
}
}