-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.91 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
{
"name": "athing",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"clean": "find . -name node_modules -o -name .next -type d -prune | xargs rm -rf",
"db:gen": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"db:reset": "prisma migrate reset",
"dev": "next dev",
"format": "prettier . --check --cache --cache-location='node_modules/.cache/.prettiercache'",
"format:fix": "prettier . --write --cache --cache-location='node_modules/.cache/.prettiercache' --log-level=warn",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint . --cache --cache-location 'node_modules/.cache/.eslintcache' --max-warnings 0",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=false eslint . --fix --cache --cache-location 'node_modules/.cache/.eslintcache' --max-warnings 0",
"start": "next start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hcaptcha/react-hcaptcha": "^1.10.1",
"@prisma/client": "^5.14.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"@tanstack/react-query": "^5.39.0",
"@trpc/client": "11.0.0-rc.377",
"@trpc/next": "11.0.0-rc.377",
"@trpc/react-query": "11.0.0-rc.377",
"@trpc/server": "11.0.0-rc.377",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.0",
"formik": "^2.4.6",
"framer-motion": "^11.2.6",
"jotai": "^2.8.2",
"jsonwebtoken": "^9.0.2",
"nanoid": "^5.0.7",
"next": "14.2.3",
"next-seo": "^6.5.0",
"nookies": "^2.5.2",
"rate-limiter-flexible": "^5.0.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.2.1",
"react-indiana-drag-scroll": "^2.2.0",
"react-textarea-autosize": "^8.5.3",
"superjson": "2.2.1",
"zod": "^3.23.8",
"zod-formik-adapter": "^1.3.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.2.3",
"@tanstack/react-query-devtools": "^5.39.0",
"@types/bcrypt": "^5.0.2",
"@types/cookie": "^0.6.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.12.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vercel/style-guide": "^6.0.0",
"autoprefixer": "^10.4.19",
"eslint": "8.48.0",
"eslint-config-next": "^14.2.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.5.0",
"prettier-plugin-tailwindcss": "^0.5.14",
"prisma": "^5.14.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b",
"engines": {
"node": ">=20.0.0"
},
"ct3aMetadata": {
"initVersion": "6.8.0"
}
}