-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.77 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
{
"name": "project-origin",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"deploy": "wrangler pages deploy",
"dev": "prisma generate && run-p dev:*",
"dev:remix": "remix vite:dev",
"dev:types": "tsc -b --watch --preserveWatchOutput",
"lint": "eslint .",
"check-format": "prettier --check .",
"format": "prettier --write .",
"typegen": "wrangler types",
"prepare": "prisma generate && panda codegen"
},
"dependencies": {
"@conform-to/react": "^1.1.4",
"@conform-to/zod": "^1.1.4",
"@prisma/adapter-d1": "^5.15.0",
"@prisma/client": "^5.15.0",
"@radix-ui/themes": "^3.0.5",
"@remix-run/cloudflare": "^2.9.2",
"@remix-run/cloudflare-pages": "^2.9.2",
"@remix-run/react": "^2.9.2",
"isbot": "^5.1.9",
"ky": "^1.3.0",
"next-themes": "^0.3.0",
"ra-data-simple-prisma": "^5.2.0",
"react": "^18.3.1",
"react-admin": "^4.16.18",
"react-dom": "^18.3.1",
"remix-auth": "^3.7.0",
"remix-auth-discord": "^1.3.3",
"ts-pattern": "^5.2.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240605.0",
"@eslint/js": "^9.4.0",
"@pandacss/dev": "^0.40.1",
"@remix-run/dev": "^2.9.2",
"@types/eslint__js": "^8.42.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.0",
"execa": "^9.2.0",
"npm-run-all2": "^6.2.0",
"prettier": "^3.3.2",
"prisma": "^5.15.0",
"tsx": "^4.15.2",
"typescript": "~5.4.5",
"typescript-eslint": "^7.13.0",
"vite": "^5.2.13",
"wrangler": "^3.60.2"
},
"engines": {
"node": "^20.14.0",
"npm": "10"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}