-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.44 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.44 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
{
"name": "create-react-spa-cloudflare",
"type": "module",
"version": "0.0.26",
"description": "Starter package for a React SPA with Cloudflare Pages, Workers, and KV",
"bin": "./bin/cli.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"client": "pnpm --filter client",
"server": "pnpm --filter server",
"build": "pnpm -r build",
"clean": "rm -rf node_modules && pnpm -r exec rm -rf node_modules && pnpm i",
"dev": "pnpm -r dev",
"e2e": "pnpm exec playwright test",
"e2e:ui": "pnpm exec playwright test --ui",
"format": "pnpm exec prettier --write **/*.{js,ts,tsx,json,css,md}",
"lint": "pnpm -r lint",
"test": "pnpm -r test",
"test:watch": "pnpm -r test:watch",
"typecheck": "pnpm -r typecheck"
},
"keywords": [
"react",
"spa",
"cloudflare"
],
"author": "@codenickycode",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codenickycode/create-react-spa-cloudflare.git"
},
"dependencies": {
"hono": "^4.7.8"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@playwright/test": "^1.52.0",
"@types/eslint": "^9.6.1",
"@types/node": "^22.7.4",
"@typescript-eslint/parser": "^8.32.0",
"eslint": "^9.26.0",
"globals": "^16.1.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0",
"wrangler": "^4.14.3"
},
"engines": {
"node": ">=22.9.0",
"pnpm": ">=9"
}
}