-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.89 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.89 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
{
"name": "aysu-app",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "VITE_BUILD_DATE=$(date +'%Y-%m-%d') VITE_APP_VARIANT=nightly VITE_COMMIT_ID=$(git rev-parse --short HEAD) vite",
"build": "run-p type-check \"build-only {@}\" --",
"build:nightly": "run-p type-check \"build-only:nightly {@}\" --",
"preview": "vite preview",
"build-only": "VITE_BUILD_DATE=$(date +'%Y-%m-%d') VITE_APP_VARIANT=stable VITE_COMMIT_ID=$(git rev-parse --short HEAD) vite build",
"build-only:nightly": "VITE_BUILD_DATE=$(date +'%Y-%m-%d') VITE_APP_VARIANT=nightly VITE_COMMIT_ID=$(git rev-parse --short HEAD) vite build",
"type-check": "vue-tsc --build",
"lint": "run-s lint:*",
"lint:oxlint": "oxlint . --fix",
"lint:eslint": "eslint . --fix --cache",
"format": "prettier --write --experimental-cli src/"
},
"dependencies": {
"@types/js-cookie": "^3.0.6",
"@vitejs/plugin-basic-ssl": "^2.1.4",
"@vueuse/core": "^14.2.1",
"js-cookie": "^3.0.5",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"spark-md5": "^3.0.2",
"vue": "^3.5.27",
"vue-draggable-plus": "^0.6.1",
"vue-router": "^5.0.1"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.4",
"@types/node": "^24.10.9",
"@types/spark-md5": "^3.0.5",
"@vitejs/plugin-vue": "^6.0.3",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/tsconfig": "^0.8.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-oxlint": "~1.42.0",
"eslint-plugin-vue": "~10.7.0",
"jiti": "^2.6.1",
"npm-run-all2": "^8.0.4",
"oxlint": "~1.42.0",
"prettier": "3.8.1",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-vue-devtools": "^8.0.5",
"vue-tsc": "^3.2.4",
"wrangler": "^4.63.0"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}