-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
54
55
56
57
{
"name": "tava-frontend-assessment-react",
"version": "1.0.0",
"description": "",
"keywords": [],
"main": "src/index.tsx",
"dependencies": {
"@tanstack/react-query": "^5.60.5",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"express": "^4.21.1",
"lodash": "^4.17.21",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-error-boundary": "^4.1.2",
"react-hook-form": "^7.53.2",
"react-router-dom": "6.28.0",
"tailwind-merge": "^2.5.4",
"zod": "^3.23.8",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@tanstack/eslint-plugin-query": "^5.60.1",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"eslint": "^8.57.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"ts-node": "^10.9.2",
"typescript": "4.9.5",
"typescript-eslint": "^8.14.0",
"vite": "^5.4.11"
},
"scripts": {
"client": "vite",
"server": "ts-node --project src/server/tsconfig.json src/server/index.ts",
"start:dev": "concurrently \"pnpm run server\" \"pnpm run client\"",
"build": "vite build",
"preview": "vite preview",
"test": "react-scripts test --env=jsdom"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}