-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.18 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.18 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
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
103
104
{
"name": "pycon.id",
"private": true,
"sideEffects": false,
"type": "commonjs",
"scripts": {
"build": "prisma generate && remix build",
"dev": "remix dev",
"typecheck": "tsc",
"lint": "eslint \"app/**/*.+(ts|tsx)\"",
"lint:fix": "pnpm lint -- --fix",
"format": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"format:fix": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"db:validate": "prisma validate",
"db:gen": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:seed": "prisma db seed",
"db:studio": "prisma studio --browser none",
"prebuild": "prisma db push",
"postinstall": "prisma generate"
},
"dependencies": {
"@conform-to/react": "^0.9.0",
"@conform-to/zod": "^0.9.0",
"@fontsource/open-sans": "^5.0.8",
"@fontsource/quicksand": "^5.0.8",
"@prisma/client": "5.1.1",
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-slot": "1.0.2",
"@radix-ui/react-toast": "^1.1.4",
"@remix-run/css-bundle": "^1.19.2",
"@remix-run/node": "^1.19.2",
"@remix-run/react": "^1.19.2",
"@remix-run/vercel": "^1.19.2",
"@vercel/analytics": "^1.0.1",
"@vercel/node": "^2.15.8",
"class-variance-authority": "0.7.0",
"clsx": "2.0.0",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"file-saver": "^2.0.5",
"imagekit": "^4.1.3",
"imagekitio-react": "^3.0.0",
"isbot": "^3.6.13",
"ky": "^1.0.1",
"lucide-react": "^0.276.0",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-day-picker": "^8.8.2",
"react-dom": "^18.2.0",
"react-google-recaptcha": "^3.1.0",
"react-qr-code": "^2.0.12",
"remix-auth": "^3.5.1",
"remix-auth-form": "^1.3.0",
"remix-utils": "^6.6.0",
"sheetjs-style": "^0.15.8",
"slugify": "^1.6.6",
"swr": "^2.2.4",
"tailwind-merge": "1.14.0",
"tailwindcss-animate": "1.0.6",
"xlsx": "^0.18.5",
"zod": "^3.21.2"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.0",
"@remix-run/dev": "^1.19.2",
"@remix-run/eslint-config": "^1.19.2",
"@remix-run/serve": "^1.19.2",
"@tailwindcss/typography": "0.5.9",
"@types/file-saver": "^2.0.7",
"@types/node": "20.4.8",
"@types/nprogress": "^0.2.1",
"@types/react": "^18.2.19",
"@types/react-dom": "^18.2.7",
"@types/react-google-recaptcha": "^2.1.8",
"autoprefixer": "10.4.14",
"eslint": "^8.46.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"prettier": "3.0.0",
"prettier-plugin-tailwindcss": "0.4.1",
"prisma": "5.1.1",
"tailwindcss": "^3.3.3",
"taze": "0.11.2",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=14.0.0"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
}
}