forked from 33-Auto/Sampoom-Management-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.54 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.54 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "create-react-app",
"version": "0.0.1",
"license": "MIT",
"type": "module",
"msw": {
"workerDirectory": "public"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "vite",
"dev": "vite --mode dev",
"build": "vite build",
"build:mock": "vite build --mode mock",
"preview": "vite preview",
"preview:mock": "vite preview",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"prettier": "prettier --ignore-unknown --write .",
"clean": "rimraf node_modules pnpm-lock.yaml dist",
"validate": "./scripts/validate",
"remove:tailwind": "scripts/remove_tailwind.js",
"prepare": "husky",
"fsd": "npx steiger ./src",
"diagram": "npx fsd-cruise",
"generate-api-types": "openapi-typescript dist/combined-api.yaml --output src/shared/model/v1.d.ts",
"merge-api-schemas": "pnpm dlx openapi-merge-cli --config openapi-merge.json",
"generate:api:all": "pnpm merge-api-schemas && pnpm generate-api-types"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-slot": "^1.2.4",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-query-devtools": "^5.91.3",
"@vercel/analytics": "^2.0.0",
"@vercel/speed-insights": "^2.0.0",
"axios": "^1.13.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"openapi-fetch": "^0.17.0",
"openapi-react-query": "^0.5.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-error-boundary": "^6.1.1",
"react-hook-form": "^7.71.2",
"react-router": "^7.13.1",
"react-router-dom": "^7.13.1",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/compat": "^2.0.3",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@feature-sliced/steiger-plugin": "^0.5.7",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.2.1",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/eslint": "^9.6.1",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.3.0",
"@vitest/ui": "^3.1.1",
"all-contributors-cli": "^6.26.1",
"concurrently": "^9.2.1",
"cross-fetch": "^4.1.0",
"dependency-cruiser": "^17.3.9",
"eslint": "^10.0.3",
"eslint-config-ts-prefixer": "^4.1.6",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.4.0",
"msw": "^2.12.11",
"openapi-merge": "^1.3.3",
"openapi-merge-cli": "^1.3.2",
"openapi-typescript": "^7.13.0",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"rimraf": "^6.1.3",
"steiger": "^0.5.11",
"tailwindcss": "^4.2.1",
"ts-expect": "^1.3.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^3.2.0"
},
"volta": {
"node": "22.17.0"
}
}