-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.2 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
{
"name": "kilo-y-medio",
"version": "0.1.0",
"private": true,
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npm run lint:eslint && npm run lint:ts",
"lint:next": "next lint",
"lint:eslint": "eslint .",
"lint:ts": "npx tsc --noemit",
"format": "prettier -w ./",
"postinstall": "prisma generate",
"check-types": "tsc --noemit",
"prisma:pushWithForceReset": "prisma db push --force-reset",
"prisma:seed": "prisma db push --force-reset && prisma db seed",
"prisma:studio": "prisma studio",
"prepare": "husky install",
"test": "jest -i"
},
"dependencies": {
"@formkit/auto-animate": "^1.0.0-beta.3",
"@headlessui/react": "^1.7.3",
"@hookform/resolvers": "^2.9.8",
"@next-auth/prisma-adapter": "^1.0.4",
"@next/bundle-analyzer": "^13.0.1",
"@prisma/client": "^4.7.0",
"@supabase/supabase-js": "^2.0.6",
"@tailwindcss/line-clamp": "^0.4.2",
"@tanstack/react-query": "^4.13.0",
"@trpc/client": "^10.0.0-proxy-beta.25",
"@trpc/next": "^10.0.0-proxy-beta.25",
"@trpc/react-query": "^10.0.0-proxy-beta.25",
"@trpc/server": "^10.0.0-proxy-beta.25",
"@types/bluebird": "^3.5.38",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.9",
"argon2": "^0.29.1",
"aws-sdk": "^2.1248.0",
"axios": "^1.1.3",
"bluebird": "^3.7.2",
"clsx": "^1.2.1",
"daisyui": "^2.38.0",
"dotenv": "^16.0.3",
"framer-motion": "^7.8.0",
"next": "12.2.5",
"next-auth": "^4.10.3",
"pure-react-carousel": "^1.30.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.36.0",
"react-horizontal-scrolling-menu": "^3.2.3",
"react-icons": "^4.4.0",
"react-query": "3.39.2",
"react-toastify": "^9.0.8",
"react-youtube": "^10.1.0",
"reactjs-popup": "^2.0.5",
"superjson": "^1.9.1",
"uuid": "^9.0.0",
"validator": "^13.7.0",
"zod": "^3.18.0"
},
"devDependencies": {
"@playwright/test": "^1.27.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/jest": "^29.2.0",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@vitejs/plugin-react": "^2.2.0",
"autoprefixer": "^10.4.10",
"eslint": "8.28.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.0",
"jest": "^29.2.2",
"jest-mock-extended": "2.0.4",
"jsdom": "^20.0.2",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "^4.7.0",
"tailwindcss": "^3.1.8",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "4.9.3",
"vite": "^3.2.3",
"vitest": "^0.25.1"
},
"ct3aMetadata": {
"initVersion": "5.11.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier -w",
"eslint --fix"
]
},
"packageManager": "[email protected]"
}