-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.92 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.92 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
69
70
{
"name": "caramel",
"version": "0.1.0",
"description": "Minimal Pulsate Web Client",
"type": "module",
"license": "Apache-2.0",
"packageManager": "pnpm@10.33.0",
"private": true,
"sideEffects": false,
"author": {
"name": "pulsate-dev",
"email": "info@pulsate.dev"
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "react-router build",
"dev": "react-router dev",
"deploy": "pnpm run build && wrangler deploy",
"typecheck": "pnpm run cf-typegen && react-router typegen && tsc",
"lint": "eslint .",
"format": "prettier --write ./app/**",
"format:check": "prettier --check ./app/**",
"preview": "pnpm run build && vite preview",
"cf-typegen": "wrangler types",
"css-types-gen": "hcm 'app/**/*.module.css'",
"e2e": "playwright test"
},
"dependencies": {
"@cloudflare/vite-plugin": "^1.13.3",
"@marsidev/react-turnstile": "^1.3.1",
"@pulsate-dev/exp-api-types": "^0.0.1",
"@react-router/cloudflare": "^7.9.1",
"@react-router/fs-routes": "^7.9.1",
"isbot": "^5.1.30",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router": "^7.9.1",
"tslog": "^4.10.2"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@playwright/test": "^1.55.0",
"@react-router/dev": "^7.9.1",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.0.0",
"happy-css-modules": "^4.0.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^6.0.0",
"typescript-eslint": "^8.44.0",
"vite": "^8.0.0",
"wrangler": "^4.68.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"workerd"
]
}
}