forked from maccman/101-school
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 4.15 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "101",
"version": "0.1.0",
"private": true,
"engines": {
"node": "= 18"
},
"scripts": {
"dev": "next dev",
"email:dev": "email dev --dir ./server/emails -p 3050",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier-write": "prettier --write app/ components/ lib/ server/ --ignore-path shiki",
"lint-write": "eslint --fix app/ components/ lib/ server/",
"test": "TZ=UTC vitest",
"check:types": "tsc --noEmit",
"update-kysely-types": "env-cmd -f .env.local kysely-codegen --out-file ./server/db/schema-generated.ts --exclude-pattern spatial_ref_sys --camel-case",
"scripts:generate-course": "env-cmd -f .env.local tsx scripts/generate-course.ts",
"scripts:generate-sample-unit": "env-cmd -f .env.local tsx scripts/generate-sample-unit.ts",
"scripts:generate-sample-module": "env-cmd -f .env.local tsx scripts/generate-sample-module.ts",
"scripts:generate-sample-course": "env-cmd -f .env.local tsx scripts/generate-sample-course.ts",
"scripts:parse-sample-course-cip": "env-cmd -f .env.local tsx scripts/parse-sample-course-cip.ts"
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.3.2",
"@neondatabase/serverless": "^0.5.7",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-email/button": "0.0.10",
"@react-email/components": "^0.0.7",
"@react-email/markdown": "0.0.2",
"@react-email/render": "0.0.7",
"@react-email/tailwind": "0.0.8",
"@sindresorhus/slugify": "^2.2.1",
"@teamhanko/hanko-elements": "0.8.2",
"@types/node": "20.4.9",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@vercel/analytics": "^1.1.1",
"ai": "^2.2.28",
"bufferutil": "^4.0.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^0.2.0",
"cookie": "^0.5.0",
"date-fns": "^2.30.0",
"encoding": "^0.1.13",
"inngest": "^2.7.2",
"jose": "^4.15.4",
"json-schema": "^0.4.0",
"kysely": "^0.26.3",
"kysely-neon": "^1.3.0",
"lodash": "^4.17.21",
"lucide-react": "^0.265.0",
"md-to-react-email": "^3.0.4",
"nanoid": "^4.0.2",
"next": "13.4.13",
"next-themes": "^0.2.1",
"openai-edge": "^1.2.2",
"pg": "^8.11.3",
"prettier": "3.0.1",
"radix-ui": "^1.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-email": "1.9.4",
"react-error-boundary": "^4.0.11",
"react-hook-form": "^7.48.2",
"react-intersection-observer": "^9.5.3",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"server-only": "^0.0.1",
"stripe": "^12.18.0",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"ts-retry": "^4.2.4",
"tw-to-css": "^0.0.11",
"typescript": "5.1.6",
"utf-8-validate": "^6.0.3",
"uuid": "^9.0.1",
"vite": "^4.4.12",
"ws": "^8.14.2",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/dompurify": "^3.0.5",
"@types/html-to-text": "^9.0.4",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.14.202",
"@types/pg": "^8.10.9",
"@types/semver": "^7.5.6",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"env-cmd": "^10.1.0",
"eslint": "^8.55.0",
"eslint-config-next": "^13.5.6",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "5.0.0",
"kysely-codegen": "^0.10.1",
"postcss": "^8.4.32",
"prettier-plugin-tailwindcss": "0.5.0",
"tailwindcss": "^3.3.6",
"tsx": "^3.14.0",
"vitest": "^0.34.6"
}
}