-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.85 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
{
"name": "skillsprint",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"dev": "dotenv -- next dev",
"postinstall": "prisma generate",
"lint": "next lint",
"start": "next start",
"migrate": "dotenv -- prisma migrate dev",
"tasks-seed": "dotenv -- tsx src/utils/seeds/seed-tasks.ts",
"reset-streaks": "dotenv -- tsx src/utils/seeds/reset-streaks.ts",
"gen": "prisma generate"
},
"dependencies": {
"@cortex-js/compute-engine": "^0.12.2",
"@next-auth/prisma-adapter": "^1.0.5",
"@next/font": "^13.1.6",
"@prisma/client": "^4.10.1",
"@radix-ui/react-avatar": "^1.0.1",
"@radix-ui/react-checkbox": "^1.0.2",
"@radix-ui/react-collapsible": "^1.0.1",
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-label": "^2.0.0",
"@radix-ui/react-popover": "^1.0.3",
"@radix-ui/react-progress": "^1.0.1",
"@radix-ui/react-radio-group": "^1.1.1",
"@radix-ui/react-select": "^1.2.1",
"@radix-ui/react-tabs": "^1.0.3",
"@radix-ui/react-toast": "^1.1.2",
"@supabase/supabase-js": "^2.8.0",
"@tanstack/react-query": "^4.24.10",
"@tanstack/react-table": "^8.7.9",
"@trpc/client": "^10.12.0",
"@trpc/next": "^10.12.0",
"@trpc/react-query": "^10.12.0",
"@trpc/server": "^10.12.0",
"@vercel/analytics": "^0.1.10",
"argon2": "^0.30.3",
"class-variance-authority": "^0.4.0",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"encoding": "^0.1.13",
"framer-motion": "^9.1.2",
"lucide-react": "^0.105.0",
"mathlive": "^0.87.1",
"next": "^13.1.6",
"next-auth": "^4.19.2",
"next-superjson-plugin": "^0.5.4",
"posthog-js": "^1.51.2",
"posthog-node": "^2.5.4",
"prop-types": "^15.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.2",
"react-string-replace": "^1.1.0",
"recharts": "^2.4.3",
"superjson": "^1.12.2",
"tailwind-merge": "^1.10.0",
"tailwindcss-animate": "^1.0.5",
"tsparticles-confetti": "^2.9.3",
"zod": "^3.20.6"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@paralleldrive/cuid2": "^2.2.0",
"@previewjs/config-helper-nextjs": "^1.0.6",
"@types/node": "^18.14.1",
"@types/prettier": "^2.7.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"autoprefixer": "^10.4.7",
"dotenv-cli": "^7.2.1",
"eslint": "^8.34.0",
"eslint-config-next": "13.1.2",
"postcss": "^8.4.14",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.3",
"prisma": "^4.10.1",
"tailwindcss": "^3.2.7",
"trpc-playground": "^1.0.4",
"tsx": "^3.12.3",
"typescript": "^4.9.5"
},
"ct3aMetadata": {
"initVersion": "7.3.2"
},
"volta": {
"node": "18.14.2"
}
}