-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.57 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
{
"name": "react-csr-base",
"description": "Base structure for a CSR react app",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite --config build/vite.config.ts",
"build": "tsc && vite build --config build/vite.config.ts",
"preview": "vite preview --config build/vite.config.ts",
"test": "vitest --config build/vite.config.ts",
"lint": "eslint ."
},
"dependencies": {
"@tanstack/react-query": "^5.62.11",
"@tanstack/react-router": "^1.92.9",
"axios": "^1.7.9",
"classnames": "^2.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-intl": "^7.0.4",
"zustand": "^5.0.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@tanstack/eslint-plugin-query": "^5.62.9",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-boundaries": "^5.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"sass": "^1.83.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^5.4.11",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-minify": "^2.1.0",
"vitest": "^2.1.8"
}
}