-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.16 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
{
"name": "halolight-qwik",
"version": "0.1.0",
"private": true,
"description": "基于 Qwik + Qwik City 的现代化中文后台管理系统,具备可恢复性架构和极致性能",
"author": "h7ml <h7ml@qq.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/halolight/halolight-qwik"
},
"homepage": "https://halolight-qwik.h7ml.cn",
"bugs": {
"url": "https://github.com/halolight/halolight-qwik/issues"
},
"type": "module",
"scripts": {
"dev": "vite --mode ssr",
"start": "vite --open --mode ssr",
"build": "pnpm run build.types && pnpm run build.client && pnpm run build.server",
"build.deploy": "pnpm run build.types && pnpm run build.client && pnpm run build.server",
"build.ci": "pnpm run build.types && pnpm run build.client && pnpm run build.server",
"build.client": "vite build",
"build.server": "vite build -c adapters/cloudflare-pages/vite.config.ts",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.types": "tsc --incremental --noEmit",
"build.qwik": "qwik build",
"deploy": "wrangler pages deploy dist",
"serve": "wrangler pages dev dist",
"preview": "vite preview --open",
"qwik": "qwik",
"lint": "eslint \"src/**/*.ts*\"",
"fmt": "prettier --write .",
"fmt.check": "prettier --check ."
},
"dependencies": {
"clsx": "^2.1.1",
"echarts": "^6.0.0",
"echarts-for-react": "^3.0.5",
"gridstack": "^12.3.3"
},
"devDependencies": {
"@builder.io/qwik": "^1.17.2",
"@builder.io/qwik-city": "^1.17.2",
"@eslint/js": "latest",
"@tailwindcss/forms": "^0.5.9",
"@types/node": "^22.10.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.32.0",
"eslint-plugin-qwik": "^1.17.2",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.38.0",
"typescript-plugin-css-modules": "latest",
"undici": "*",
"vite": "^7.1.11",
"vite-tsconfig-paths": "^4.2.1",
"wrangler": "^4.51.0"
},
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0",
"pnpm": ">=8"
},
"packageManager": "pnpm@10.23.0"
}