-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.14 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
58
59
60
61
62
63
64
{
"name": "vue-pure-frame",
"version": "1.20250416.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",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"syncapi": "tsx scripts/syncApi.ts"
},
"types": [
"vite/client"
],
"devDependencies": {
"@playwright/test": "^1.51.1",
"@rushstack/eslint-patch": "^1.11.0",
"@tsconfig/node22": "^22.0.1",
"@types/node": "^22.14.1",
"@vitejs/plugin-legacy": "^6.0.2",
"@vitejs/plugin-vue": "^5.2.3",
"@vitejs/plugin-vue-jsx": "^4.1.2",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.5.0",
"@vue/tsconfig": "^0.7.0",
"cross-env": "^7.0.3",
"eslint": "^9.24.0",
"eslint-plugin-vue": "^10.0.0",
"less": "^4.3.0",
"mockjs-extend": "^1.4.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"sass": "^1.86.3",
"sharp": "^0.34.1",
"svgo": "^3.3.2",
"swagger-typescript-api": "^13.0.23",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vite": "^6.2.6",
"vite-plugin-compression2": "^1.3.3",
"vite-plugin-image-optimizer": "^1.1.8",
"vite-plugin-javascript-obfuscator": "^3.1.0",
"vite-plugin-update-version": "^1.0.9",
"vizion": "^2.2.1",
"vue-tsc": "^2.2.8"
},
"dependencies": {
"axios": "^1.8.4",
"chalk": "^5.4.1",
"dotenv": "^16.5.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
}
}