-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.61 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
{
"name": "swatchr",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"postinstall": "prisma generate",
"lint": "next lint",
"start": "next start",
"postbuild": "next-sitemap",
"gen:theme-typings": "chakra-cli tokens ./chakra.ui/theme/index.ts",
"studio": "npx prisma studio",
"db:migrate": "npx prisma migrate dev --name $NAME --create-only && yarn prisma generate",
"db:push": "npx prisma db push",
"db:reset": "npx prisma migrate reset",
"db:reset-force": "npx prisma migrate reset --force",
"db:reset-force:dev": "yarn db:reset-force && next dev"
},
"dependencies": {
"@analytics/cookie-utils": "^0.2.10",
"@analytics/mixpanel": "^0.4.0",
"@chakra-ui/icons": "^2.0.17",
"@chakra-ui/react": "^2.5.1",
"@chakra-ui/skip-nav": "^2.0.15",
"@chakra-ui/theme-tools": "^2.0.16",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fontsource/bebas-neue": "^4.5.9",
"@fontsource/recursive": "^4.5.13",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.9.0",
"@tanstack/react-query": "^4.20.2",
"@trpc/client": "^10.9.0",
"@trpc/next": "^10.9.0",
"@trpc/react-query": "^10.9.0",
"@trpc/server": "^10.9.0",
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^9.0.1",
"@vercel/analytics": "^0.1.11",
"@vercel/og": "^0.4.1",
"analytics": "^0.8.1",
"analytics-plugin-do-not-track": "^0.1.5",
"bcryptjs": "^2.4.3",
"framer-motion": "^10.2.3",
"jsonwebtoken": "^9.0.0",
"next": "^13.2.3",
"next-auth": "^4.19.0",
"next-seo": "^5.15.0",
"next-share": "^0.19.0",
"nodemailer": "^6.9.1",
"react": "18.2.0",
"react-colorful": "^5.6.1",
"react-dom": "18.2.0",
"superjson": "1.12.2",
"tinycolor2": "^1.6.0",
"trpc-playground": "^1.0.4",
"unique-names-generator": "^4.7.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@chakra-ui/cli": "^2.3.0",
"@types/eslint": "^8.21.1",
"@types/node": "^18.14.6",
"@types/nodemailer": "^6.4.7",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/tinycolor2": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.35.0",
"eslint-config-next": "^13.2.1",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"next-sitemap": "^4.0.5",
"prettier-plugin-organize-imports": "^3.2.2",
"prisma": "^4.9.0",
"tsx": "^3.12.3",
"typescript": "^4.9.5"
},
"ct3aMetadata": {
"initVersion": "7.6.0"
}
}