-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.44 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.44 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
{
"name": "react-pure-frame",
"version": "1.20251114.1",
"type": "module",
"scripts": {
"serve": "cross-env CURRENT_ENV=dev vite",
"serve:test": "cross-env CURRENT_ENV=test vite --mode test",
"build": "run-p type-check && cross-env CURRENT_ENV=prod run-p build-only",
"build:test": "run-p type-check && cross-env CURRENT_ENV=test run-p build-only:test",
"preview": "vite preview",
"preview:test": "vite preview --mode test",
"test": "cross-env CURRENT_ENV=dev playwright test",
"test:test": "cross-env CURRENT_ENV=test playwright test",
"codegen": "playwright codegen --load-storage=e2e/auth/user.json",
"build-only": "vite build",
"build-only:test": "vite build --mode test",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"type-check": "tsc --noEmit -p tsconfig.json --composite false",
"format": "prettier --write src/",
"syncapi": "tsx scripts/syncApi.ts"
},
"types": [
"vite/client"
],
"devDependencies": {
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.56.1",
"@rushstack/eslint-patch": "^1.15.0",
"@tailwindcss/vite": "^4.1.17",
"@tsconfig/node24": "^24.0.2",
"@types/node": "^24.10.1",
"@react-router/dev": "^7.9.6",
"@types/react": "^19.2.4",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-legacy": "^7.2.1",
"@vitejs/plugin-react": "^5.1.1",
"babel-plugin-react-compiler": "^1.0.0",
"chalk": "^5.6.2",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"less": "^4.4.2",
"mockjs-extend": "^1.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"sass": "^1.94.0",
"sharp": "^0.34.5",
"svgo": "^4.0.0",
"swagger-typescript-api": "^13.2.16",
"tailwindcss": "^4.1.17",
"tsx": "^4.20.6",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^7.2.2",
"vite-tsconfig-paths": "^5.1.4",
"vite-plugin-compression2": "^2.3.1",
"vite-plugin-image-optimizer": "^2.0.3",
"vite-plugin-javascript-obfuscator": "^3.1.0",
"vite-plugin-update-version": "^1.0.9"
},
"dependencies": {
"axios": "^1.13.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.553.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router": "^7.9.6",
"tailwind-merge": "^3.4.0"
}
}