-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.96 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
{
"name": "react-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"test": "cypress run",
"dev": "vite --host",
"start:dev": "NODE_ENV=development vite --host",
"start:prod": "NODE_ENV=production1 vite --host",
"build": "vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@emotion/styled": "^11.11.0",
"@fontsource/inter": "^5.0.16",
"@fontsource/roboto": "^5.0.8",
"@loadable/component": "^5.16.3",
"@mui/icons-material": "^5.15.5",
"@mui/joy": "^5.0.0-beta.23",
"@mui/lab": "^5.0.0-alpha.166",
"@mui/material": "^5.15.11",
"@tanstack/react-query": "^5.64.1",
"axios": "^1.6.6",
"dayjs": "^1.11.10",
"dayjs-plugin-utc": "^0.1.2",
"elliptic": "^6.5.4",
"lodash-es": "^4.17.21",
"notistack": "^3.0.1",
"sha256": "^0.2.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@emotion/react": "^11.11.3",
"@mui/material-next": "^6.0.0-alpha.120",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/elliptic": "^6.4.18",
"@types/jest": "^29.5.12",
"@types/loadable__component": "^5.13.9",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/sha256": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"cypress": "^13.13.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"prettier": "3.2.4",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-tsconfig-paths": "^4.3.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.3"
}
}