forked from giladfuchs/fullstack-template-fastapi-react-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.25 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.25 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
61
62
63
64
65
66
{
"name": "fullstack-react",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite --port 3365",
"lint": "eslint . --ext .ts,.tsx",
"format": "npx prettier --write .",
"typecheck": "tsc --noEmit",
"lint:fix": "eslint . --ext .ts,.tsx --fix --cache",
"dev:lint": "concurrently -k -n VITE,ESLINT -c auto \"vite\" \"chokidar ' src/**/*.{ts,tsx}' -c 'eslint {path}'\"",
"dev:ts": "CHECK_TS=true vite",
"dev:all": "CHECK_TS=true pnpm dev:lint",
"build": "vite build",
"build:typecheck": "tsc -b && vite build",
"preview": "vite preview"
},
"dependencies": {
"@vercel/analytics": "^1.5.0",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.1",
"@mui/material": "^7.3.1",
"ag-grid-community": "^34.1.1",
"ag-grid-react": "^34.1.1",
"axios": "^1.11.0",
"formik": "^2.4.6",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-intl": "^7.1.11",
"react-router-dom": "^7.8.0",
"@reduxjs/toolkit": "^2.8.2",
"react-redux": "^9.2.0",
"redux-persist": "^6.0.0",
"sonner": "^2.0.7",
"stylis-plugin-rtl": "^2.1.1",
"yup": "^1.7.0"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/node": "^24.2.1",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^4.7.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.2.0",
"csstype": "^3.1.3",
"eslint": "^9.32.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"sass-embedded": "^1.90.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.0",
"vite": "^7.1.0",
"vite-plugin-checker": "^0.10.2"
},
"browserslist": [
"defaults",
"not IE 11",
"not op_mini all"
],
"packageManager": "pnpm@10.8.1+sha512.c50088ba998c67b8ca8c99df8a5e02fd2ae2e2b29aaf238feaa9e124248d3f48f9fb6db2424949ff901cffbb5e0f0cc1ad6aedb602cd29450751d11c35023677"
}