-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 803 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 803 Bytes
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
{
"name": "reactstack-core",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:guard": "npm run build && npm run check:bundle",
"preview": "vite preview",
"lint": "eslint .",
"check:bundle": "node ./scripts/check-bundle-budget.mjs"
},
"dependencies": {
"@tanstack/react-query": "^5.59.20",
"clsx": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"web-vitals": "^4.2.4",
"zod": "^3.23.8",
"zustand": "^4.5.5"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^9.13.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.11.0",
"vite": "^5.4.9",
"vite-plugin-pwa": "^0.20.5"
}
}