-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.28 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
{
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "tsx ./dev-server",
"public:assets": "tsx ./scripts/public-assets.ts",
"build": "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 .",
"lint:fix": "eslint --fix .",
"wrangler:types": "wrangler types",
"postinstall": "npm run public:assets"
},
"dependencies": {
"@brillout/json-serializer": "^0.5.8",
"@cloudflare/kv-asset-handler": "^0.2.0",
"@vitejs/plugin-react": "^4.2.1",
"clsx": "^2.1.0",
"compression": "^1.7.4",
"express": "^4.18.2",
"node-fetch": "^2.6.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-streaming": "^0.3.9",
"scheduler": "^0.23.0",
"set-cookie-parser": "^2.6.0",
"tagged-classnames-free": "0.1.0-next.1",
"tailwind-merge": "^2.2.1",
"type-fest": "^4.12.0",
"vike": "0.4.165",
"vite": "^5.0.10",
"wrangler": "^3.32.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.3",
"@cloudflare/workers-types": "^4.20240222.0",
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@commitlint/types": "^18.4.4",
"@jannajs/lint": "3.0.0-next.4",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/node": "^20.11.25",
"@types/node-fetch": "^2.6.11",
"@types/react": "^18.2.63",
"@types/react-dom": "^18.2.19",
"@types/set-cookie-parser": "^2.4.7",
"autoprefixer": "^10.4.18",
"dedent": "^1.5.1",
"eslint": "npm:[email protected]",
"eslint-plugin-format": "^0.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-tailwindcss": "^3.14.3",
"eslint-ts-patch": "^8.56.0-0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"unplugin-polish-tagged-templates": "0.1.1-beta.2",
"zx": "^7.2.3"
},
"lint-staged": {
"*": "eslint"
}
}