This repository was archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.66 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.66 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
52
53
54
55
56
57
58
59
60
{
"private": true,
"scripts": {
"dev": "vite",
"build": "yarn genroutes && tsc && vite build",
"a": "cross-env analyze=true vite build",
"preview": "vite preview",
"lint": "eslint --ext \"js,jsx,ts,tsx\" src",
"genroutes": "ts-node -P ./build/tsconfig.json build/generateRoutes",
"postinstall": "rimraf ./node_modules/.cache/"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.10.16",
"@mui/material": "^5.10.17",
"@mui/styles": "^5.10.16",
"axios": "^1.2.1",
"boxicons": "^2.1.4",
"classnames": "^2.3.2",
"dotenv": "^16.0.3",
"js-yaml": "^4.1.0",
"mobx": "^6.7.0",
"mobx-react-lite": "^3.4.0",
"qrcode": "^1.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-router-dom": "^6.4.4",
"sass": "^1.56.1",
"tailwindcss": "^3.2.4",
"type-fest": "^3.3.0",
"typescript": "^4.9.3"
},
"devDependencies": {
"@noe132/eslint-config-react": "^0.1.8",
"@svgr/core": "^6.5.1",
"@types/js-yaml": "^4.0.5",
"@types/qrcode": "^1.5.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/rimraf": "^3.0.2",
"@vitejs/plugin-react": "^2.2.0",
"browserslist": "^4.21.4",
"cross-env": "^7.0.3",
"eslint": "^8.29.0",
"eslint-import-resolver-typescript": "^3.5.2",
"node-watch": "^0.7.3",
"nodemon": "^2.0.20",
"postcss": "^8.4.19",
"rimraf": "^3.0.2",
"rollup-plugin-visualizer": "^5.8.3",
"ts-node": "^10.9.1",
"vite": "^3.2.5",
"vite-plugin-checker": "^0.5.1"
},
"browserslist": [
"last 3 years"
]
}