-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
86 lines (86 loc) · 2.56 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
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "run-s format:*",
"format:prisma": "npx prisma format",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npx playwright test --ui",
"typecheck": "tsc",
"dev": "remix vite:dev",
"build": "run-s build:*",
"build:remix": "remix vite:build",
"build:db": "npx prisma generate",
"update:db": "npx prisma db push",
"seed:db": "npx tsx prisma/seed.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@prisma/client": "^5.1.1",
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"@simplewebauthn/browser": "^9.0.1",
"@simplewebauthn/server": "^9.0.3",
"@supabase/supabase-js": "^2.42.0",
"@unpic/react": "^0.1.11",
"@upstash/qstash": "^2.5.4",
"@upstash/ratelimit": "^2.0.1",
"@vercel/edge": "^1.1.2",
"@vercel/kv": "^2.0.0",
"bcryptjs": "^2.4.3",
"clsx": "^2.0.0",
"google-auth-library": "^9.0.0",
"isbot": "^3.6.8",
"openai": "^4.51.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.2.18",
"@faker-js/faker": "^8.4.0",
"@playwright/test": "^1.40.1",
"@remix-run/dev": "^2.8.1",
"@remix-run/eslint-config": "^2.8.1",
"@remix-run/serve": "^2.8.1",
"@simplewebauthn/types": "^9.0.1",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/addon-onboarding": "^8.0.0",
"@storybook/blocks": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/react-vite": "^8.0.0",
"@storybook/test": "^8.0.0",
"@tailwindcss/forms": "^0.5.6",
"@types/bcryptjs": "^2.4.2",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@vercel/remix": "^2.8.1",
"autoprefixer": "^10.4.18",
"eslint": "^8.40.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "^0.8.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.35",
"prettier": "^3.0.3",
"prisma": "^5.1.1",
"storybook": "^8.0.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vite": "^5.1.6",
"vite-tsconfig-paths": "^4.3.1"
},
"engines": {
"node": ">=16"
}
}