-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.84 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.84 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
{
"type": "module",
"private": true,
"packageManager": "pnpm@10.33.2",
"sideEffects": false,
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"scripts": {
"start": "remix vite:dev",
"build": "remix vite:build",
"serve": "wrangler pages dev ./build/client",
"deploy": "wrangler pages deploy",
"prepare": "concurrently --group --prefix-colors 'auto' 'pnpm:prepare:*'",
"prepare:husky": "husky",
"prepare:panda": "panda codegen",
"prepare:wrangler": "wrangler types",
"lint": "concurrently --group --prefix-colors 'auto' 'pnpm:lint:*'",
"lint:eslint": "eslint .",
"lint:cspell": "cspell --no-progress --no-summary --no-must-find-files .",
"lint:knip": "knip --no-progress --workspace .",
"fix": "concurrently --group --prefix-colors 'auto' 'pnpm:fix:*'",
"fix:eslint": "eslint --fix .",
"fix:knip": "knip --fix --no-progress --workspace ."
},
"dependencies": {
"@remix-run/cloudflare": "^2.9.2",
"@remix-run/cloudflare-pages": "^2.9.2",
"@remix-run/react": "^2.9.2",
"framer-motion": "^12.0.0",
"isbot": "^5.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240529.0",
"@commitlint/cli": "^20.0.0",
"@fontsource-variable/gabarito": "^5.0.4",
"@pandacss/dev": "^1.0.0",
"@remix-run/dev": "^2.9.2",
"@somehow-digital/commitlint-config": "^1.0.0",
"@somehow-digital/cspell-dictionary": "^2.0.0",
"@somehow-digital/eslint-config": "^5.0.0",
"@somehow-digital/typescript-config": "^3.0.0",
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"concurrently": "^9.0.0",
"cspell": "^10.0.0",
"eslint": "^10.0.0",
"husky": "^9.0.11",
"knip": "^6.0.0",
"lint-staged": "^16.0.0",
"postcss": "^8.5.9",
"typescript": "^6.0.0",
"vite": "^8.0.0",
"vite-tsconfig-paths": "^6.0.0",
"wrangler": "^4.0.0"
}
}