-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.64 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
{
"name": "caramel",
"version": "0.1.0",
"description": "Minimal Pulsate Web Client",
"type": "module",
"license": "Apache-2.0",
"packageManager": "[email protected]",
"private": true,
"sideEffects": false,
"author": {
"name": "pulsate-dev",
"email": "[email protected]"
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"start": "wrangler pages dev ./build/client",
"typecheck": "tsc",
"lint": "eslint .",
"format": "prettier --write ./app/**",
"format:check": "prettier --check ./app/**",
"preview": "pnpm run build && wrangler pages dev",
"cf-typegen": "wrangler types"
},
"dependencies": {
"@marsidev/react-turnstile": "^1.1.0",
"@remix-run/cloudflare": "^2.13.1",
"@remix-run/cloudflare-pages": "^2.13.1",
"@remix-run/react": "^2.13.1",
"isbot": "^5.1.17",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241011.0",
"@eslint/js": "^9.12.0",
"@remix-run/dev": "^2.12.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"autoprefixer": "^10.4.20",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.1",
"globals": "^15.10.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0",
"vite": "^6.0.0",
"vite-tsconfig-paths": "^5.0.1",
"wrangler": "^3.80.5"
}
}