-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 3.18 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
{
"name": "type-the-word",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev -p 1199",
"lint": "next lint",
"format": "prettier ./src/**/* --write",
"start": "next start",
"test": "vitest",
"test:watch": "vitest --watch --reporter=verbose",
"db:generate-migration": "dotenv drizzle-kit generate",
"db:run-migrations": "dotenv drizzle-kit migrate",
"db:up": "docker compose --project-directory ./docker up -d",
"db:seed": "// todo make a script that connects and runs seed.sql"
},
"dependencies": {
"@auth/drizzle-adapter": "0.3.2",
"@headlessui/react": "^1.7.17",
"@opentelemetry/api": "^1.7.0",
"@opentelemetry/auto-instrumentations-node": "^0.41.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.48.0",
"@opentelemetry/resources": "^1.21.0",
"@opentelemetry/sdk-node": "^0.48.0",
"@opentelemetry/sdk-trace-base": "^1.21.0",
"@opentelemetry/sdk-trace-node": "^1.21.0",
"@opentelemetry/semantic-conventions": "^1.21.0",
"@planetscale/database": "^1.11.0",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-tooltip": "^1.0.7",
"@sentry/nextjs": "^8.12.0",
"@t3-oss/env-nextjs": "^0.6.0",
"@tanstack/react-query": "^4.32.6",
"@vercel/analytics": "^1.4.1",
"@vercel/og": "^0.5.20",
"clsx": "^2.0.0",
"colorjs.io": "^0.5.2",
"date-fns": "^3.6.0",
"drizzle-orm": "^0.37.0",
"drizzle-zod": "^0.5.1",
"fast-deep-equal": "^3.1.3",
"fathom-client": "^3.7.0",
"formik": "^2.4.6",
"jotai": "^2.5.1",
"jsdom": "^22.1.0",
"motion": "^10.16.4",
"next": "^14.2.4",
"next-auth": "^4.23.0",
"parse5": "^7.1.2",
"postgres": "^3.4.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hotkeys-hook": "^4.5.0",
"sharp": "^0.33.4",
"superjson": "^1.13.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@csstools/postcss-oklab-function": "^4.0.5",
"@tailwindcss/typography": "^0.5.14",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/eslint": "^8.44.2",
"@types/jsdom": "^21.1.4",
"@types/node": "^18.16.0",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"autoprefixer": "^10.4.14",
"dotenv-cli": "^7.3.0",
"drizzle-kit": "^0.29.1",
"eslint": "^8.47.0",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^9.0.0",
"postcss": "^8.4.27",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.5.1",
"tailwindcss": "^3.4.10",
"typescript": "^5.1.6",
"vitest": "^0.34.6"
},
"ct3aMetadata": {
"initVersion": "7.20.2"
},
"packageManager": "[email protected]"
}