-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.47 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
{
"name": "risktrace",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-s type-check type-check:functions build-only",
"build-only": "vite build",
"preview": "vite preview",
"type-check": "vue-tsc --build",
"type-check:functions": "tsc -p tsconfig.functions.json",
"lint": "run-p lint:oxlint lint:eslint",
"lint:oxlint": "oxlint .",
"lint:eslint": "eslint . --cache",
"lint:fix": "run-p lint:oxlint:fix lint:eslint:fix",
"lint:oxlint:fix": "oxlint . --fix",
"lint:eslint:fix": "eslint . --fix --cache",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "run-s type-check type-check:functions lint format:check build-only",
"cf:types": "wrangler types --path=./functions/types.d.ts",
"cf:dev": "pnpm build && wrangler pages dev",
"cf:deploy": "pnpm build && wrangler pages deploy dist --project-name=risktrace",
"db:migration:create": "wrangler d1 migrations create risktrace-db",
"db:migrate:local": "wrangler d1 migrations apply risktrace-db --local",
"db:migrate:remote": "wrangler d1 migrations apply risktrace-db --remote",
"db:list:local": "wrangler d1 migrations list risktrace-db --local",
"db:list:remote": "wrangler d1 migrations list risktrace-db --remote",
"r2:cors:apply": "wrangler r2 bucket cors set risktrace-files --file docs/r2-cors.example.json",
"r2:cors:list": "wrangler r2 bucket cors list risktrace-files"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.2",
"element-plus": "^2.14.3",
"pinia": "^4.0.2",
"vue": "^3.5.40",
"vue-router": "^5.2.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^5.20260727.1",
"@tsconfig/node24": "^24.0.4",
"@types/node": "^24.13.3",
"@vitejs/plugin-vue": "^6.0.8",
"@vue/eslint-config-typescript": "^14.9.0",
"@vue/tsconfig": "^0.9.1",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-oxlint": "~1.73.0",
"eslint-plugin-vue": "~10.9.2",
"jiti": "^2.7.0",
"npm-run-all2": "^9.0.2",
"oxlint": "~1.74.0",
"prettier": "3.9.5",
"typescript": "~6.0.0",
"unocss": "^66.7.5",
"unplugin-auto-import": "^21.0.0",
"unplugin-vue-components": "^32.1.0",
"vite": "^8.1.5",
"vite-plugin-vue-devtools": "^8.1.5",
"vue-eslint-parser": "^10.4.1",
"vue-tsc": "^3.3.7",
"wrangler": "^4.114.0"
},
"engines": {
"node": "^22.18.0 || >=24.12.0"
}
}