-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.5 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
{
"name": "vite-react-trello-web-base-project",
"private": true,
"version": "0.0.0",
"type": "module",
"author": "An Hao",
"description": "trello clone",
"engines": {
"node": ">=18.x"
},
"scripts": {
"dev": "cross-env BUILD_MODE=dev vite --host",
"build": "cross-env BUILD_MODE=production vite build --base=./",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.163",
"@mui/material": "^5.13.0",
"@reduxjs/toolkit": "^2.0.1",
"@vercel/analytics": "^1.5.0",
"axios": "^1.5.1",
"cross-env": "^7.0.3",
"lodash": "^4.17.21",
"material-ui-confirm": "^3.0.9",
"randomcolor": "^0.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.3",
"react-redux": "^9.1.0",
"react-router-dom": "^6.21.3",
"react-toastify": "^9.1.3",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react-swc": "^3.0.0",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"vite": "^4.3.2",
"vite-plugin-svgr": "^3.2.0"
}
}