generated from yunsii/starter-vike-cloudflare-react-worker
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
76 lines (76 loc) · 2.53 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "cf-worker-status-page-pro",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "tsx ./dev-server",
"public:assets": "tsx ./scripts/public-assets.ts",
"build": "npm run wrangler:types && tsc && npm run public:assets && vite build",
"preview": "npm run build && wrangler dev",
"preview:production": "npm run build && wrangler dev --env production",
"deploy": "npm run build && wrangler deploy --env production",
"prepare": "husky install",
"lint": "eslint --flag unstable_ts_config .",
"lint:fix": "eslint --flag unstable_ts_config .",
"wrangler:types": "wrangler types",
"postinstall": "npm run public:assets"
},
"dependencies": {
"@brillout/json-serializer": "^0.5.13",
"@cloudflare/kv-asset-handler": "^0.3.4",
"@floating-ui/react": "^0.26.23",
"@vitejs/plugin-react": "^4.3.1",
"node-fetch": "^2.6.9",
"papaparse": "^5.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-streaming": "^0.3.43",
"tagged-classnames-free": "0.1.0-next.1",
"vike": "0.4.195",
"wrangler": "^3.75.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.1",
"@cloudflare/workers-types": "^4.20240903.0",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/types": "^19.0.3",
"@eslint-react/eslint-plugin": "^1.12.1",
"@iconify-json/ic": "^1.1.17",
"@iconify-json/svg-spinners": "^1.1.2",
"@jannajs/lint": "3.0.0-next.18",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/node": "^20.11.25",
"@types/node-fetch": "^2.6.11",
"@types/papaparse": "^5.3.14",
"@types/react": "^18.2.63",
"@types/react-dom": "^18.2.19",
"autoprefixer": "^10.4.18",
"compression": "^1.7.4",
"dedent": "^1.5.3",
"eslint": "9.9.1",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-react-hooks": "5.1.0-rc-fb9a90fa48-20240614",
"eslint-plugin-react-refresh": "^0.4.11",
"eslint-plugin-tailwindcss": "^3.14.3",
"express": "^4.18.2",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-plugin-iconify": "^1.4.4",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"type-fest": "^4.12.0",
"typescript": "^5.3.3",
"unplugin-auto-import": "^0.17.5",
"unplugin-polish-tagged-templates": "0.1.1-beta.2",
"vite": "^5.4.3",
"zx": "^7.2.3"
},
"lint-staged": {
"*": "eslint --flag unstable_ts_config --fix"
}
}