-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.51 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "redux-offline-example",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "react-scripts build",
"postbuild": "purgecss --css build/static/css/*.css --content build/index.html build/static/js/*.js --output build/static/css",
"eject": "react-scripts eject",
"prepare": "simple-git-hooks",
"start": "run-p start:*",
"start:client": "react-scripts start",
"start:server": "json-server -w db.json -r routes.json -p 4000 -s build -m timestampMiddleware.cjs",
"test": "react-scripts test",
"test:e2e": "playwright test",
"test:e2e:watch": "playwright-watch test"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"dependencies": {
"@faker-js/faker": "^8.0.0",
"@reduxjs/toolkit": "^1.9.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.0",
"@types/json-server": "^0.14.4",
"@types/node": "^20.1.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/redux-mock-store": "^1.0.3",
"bootstrap": "^5.1.3",
"json-server": "^0.17.0",
"msw": "^1.0.0",
"npm-run-all": "^4.1.5",
"purgecss": "^5.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-redux": "^8.0.5",
"react-scripts": "5.0.1",
"react-top-loading-bar": "^2.3.1",
"redux-mock-store": "^1.5.4",
"typescript": "~4.9.4",
"web-vitals": "^3.1.1",
"workbox-background-sync": "^7.0.0",
"workbox-broadcast-update": "^7.0.0",
"workbox-cacheable-response": "^7.0.0",
"workbox-core": "^7.0.0",
"workbox-expiration": "^7.0.0",
"workbox-google-analytics": "^7.0.0",
"workbox-navigation-preload": "^7.0.0",
"workbox-precaching": "^7.0.0",
"workbox-range-requests": "^7.0.0",
"workbox-routing": "^7.0.0",
"workbox-strategies": "^7.0.0",
"workbox-streams": "^7.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@playwright/test": "^1.20.0",
"nano-staged": "^0.8.0",
"playwright-watch": "^1.3.23",
"prettier": "^3.0.0",
"simple-git-hooks": "^2.7.0",
"sort-package-json": "^2.0.0",
"vercel": "^34.1.8"
},
"proxy": "http://localhost:4000"
}