-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.05 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
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest run",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"coverage": "vitest run --coverage",
"format": "prettier . --check",
"format-fix": "prettier . --write",
"preview": "vite preview",
"generate-client": "openapi --input ./api.json --output ./src/client --client axios",
"generate-client2": "openapi --input http://127.0.0.1:8000/openapi.json --output ./src/client --client axios",
"generate-pwa-assets": "pwa-assets-generator --preset minimal public/beanscore-icon.svg"
},
"dependencies": {
"@mui/icons-material": "^5.14.8",
"@mui/lab": "^5.0.0-alpha.145",
"@mui/material": "^5.14.8",
"@reduxjs/toolkit": "^1.9.5",
"@testing-library/user-event": "^14.5.2",
"@types/react-redux": "^7.1.26",
"axios": "^1.4.0",
"heic2any": "^0.0.4",
"jwt-decode": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-oidc-context": "^2.3.1",
"react-redux": "^8.1.2",
"react-router": "^6.16.0",
"react-router-dom": "^6.16.0",
"redux": "^4.2.1",
"uuidv7": "^0.6.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/redux-mock-store": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vite-pwa/assets-generator": "^0.0.8",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.1.3",
"canvas": "^2.11.2",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"jsdom": "^23.0.1",
"openapi-typescript-codegen": "^0.25.0",
"prettier": "^3.0.2",
"redux-mock-store": "^1.5.4",
"sass": "^1.66.1",
"typescript": "^5.0.2",
"vite": "^5.0.10",
"vite-plugin-pwa": "^0.17.4",
"vitest": "^1.5.0"
}
}