forked from dynamox-s-a/developer-challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.68 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
{
"name": "app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite --port 3000",
"server": "npx json-server --watch ./mock/db.json --port 3333",
"dev": "concurrently \"vite --port 3000\" \"npx json-server --watch ./mock/db.json --port 3333\"",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.20",
"@mui/x-data-grid": "^6.18.4",
"@reduxjs/toolkit": "^2.0.1",
"axios": "^1.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.48.2",
"react-redux": "^9.0.2",
"react-router-dom": "^6.16.0",
"redux-logger": "^3.0.6",
"styled-components": "^6.1.1"
},
"devDependencies": {
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/react-redux": "^7.1.32",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.12",
"@types/styled-components": "^5.1.28",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.2.0",
"concurrently": "^3.4.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"json-server": "^0.17.4",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^5.0.0"
}
}