-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.12 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "jayspics",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc",
"setup": "npx prisma migrate dev && npx prisma generate",
"db:generate": "prisma migrate dev",
"db:migrate": "prisma migrate deploy",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:seed": "npx prisma db seed"
},
"prisma": {
"seed": "node --loader ts-node/esm prisma/seed.ts"
},
"dependencies": {
"@aws-sdk/client-cloudfront": "^3.658.1",
"@aws-sdk/client-s3": "^3.658.1",
"@aws-sdk/lib-storage": "^3.658.1",
"@aws-sdk/s3-request-presigner": "^3.658.1",
"@aws-sdk/types": "^3.654.0",
"@conform-to/react": "^1.2.2",
"@conform-to/zod": "^1.2.2",
"@prisma/adapter-pg": "^5.20.0",
"@prisma/client": "^5.20.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@remix-run/node": "^2.12.1",
"@remix-run/react": "^2.12.1",
"@remix-run/serve": "^2.12.1",
"@tanstack/react-table": "^8.20.5",
"aws-sdk": "^2.1691.0",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"cloudflare": "^3.5.0",
"clsx": "^2.1.1",
"concurrently": "^9.0.1",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"framer-motion": "^11.5.6",
"graphile-worker": "^0.16.6",
"intl-parse-accept-language": "^1.0.0",
"is-ip": "^5.0.1",
"isbot": "^4.1.0",
"lucide-react": "^0.445.0",
"motion": "^11.16.0",
"pg": "^8.13.0",
"pretty-bytes": "^6.1.1",
"prisma-rbac": "^1.2.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.3.0",
"remix-auth": "^3.7.0",
"remix-auth-form": "^1.5.0",
"remix-utils": "^7.7.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@remix-run/dev": "^2.12.1",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.2",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"autoprefixer": "^10.4.19",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"postcss": "^8.4.38",
"prisma": "^5.19.1",
"tailwindcss": "^3.4.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"vite": "^5.1.0",
"vite-tsconfig-paths": "^4.2.1"
},
"engines": {
"node": ">=20.0.0"
}
}