-
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) · 1.98 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.98 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": "vite-mpa",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=25.2.1"
},
"scripts": {
"dev": "vite dev",
"build": "npm run build:sw && vite build",
"preview": "vite preview",
"eslint": "npx eslint",
"lint": "npx oxlint && npx eslint",
"oxlint": "npx oxlint",
"generate-cf-types": "npx wrangler types ./cloudflare/env.d.ts --config ./wrangler.jsonc",
"test": "vitest --config ./vitest.config.ts",
"integration-test": "vitest run --coverage --config ./vitest.config.browser.ts",
"test-coverage": "vitest --coverage --config ./vitest.config.ts",
"build:sw": "tsc --project sw/tsconfig.json --outDir compiled-sw",
"clean-install": "node -e \"const fs = require('fs'); fs.rmSync('node_modules', { recursive: true, force: true }); fs.rmSync('package-lock.json', { force: true });\" && npm install",
"update-packages": "ncu -u && npm install"
},
"browserslist": {
"production": [
"> 1%",
"not dead"
],
"modern": [
"last 1 chrome version",
"last 1 firefox version"
]
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.17.0",
"@cloudflare/vitest-pool-workers": "^0.10.14",
"@cloudflare/workers-types": "^4.20251205.0",
"@eslint/css": "^0.14.1",
"@eslint/js": "^9.39.1",
"@html-eslint/eslint-plugin": "^0.50.0",
"@types/glob": "^9.0.0",
"@types/wait-on": "^5.3.4",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"browserslist-config-baseline": "^0.5.0",
"cheerio": "1.1.2",
"eslint": "^9.39.1",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-oxlint": "^1.31.0",
"get-port": "^7.1.0",
"glob": "^13.0.0",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"npm-check-updates": "^19.1.2",
"oxlint": "^1.31.0",
"playwright": "^1.57.0",
"rollup": "^4.52.5",
"tree-kill": "^1.2.2",
"tsconfigurator": "^2.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vite": "npm:rolldown-vite@latest",
"vitest": "^3.2.4",
"wait-on": "^9.0.3",
"wrangler": "^4.53.0"
}
}