-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.82 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
{
"name": "heart-of-passion",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"start": "next start",
"prettier-format": "prettier --config prettier.config.mjs \"src/**/*.{ts,tsx}\" --write",
"generate-dummy-data": "tsx scripts/generate-dummy-data.ts",
"create-user": "tsx scripts/create-user.ts"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.1.5",
"@chakra-ui/react": "^2.8.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/nunito": "^5.0.8",
"@fontsource/oswald": "^5.0.12",
"@lucia-auth/adapter-mongoose": "^3.0.1",
"@lucia-auth/oauth": "^3.5.0",
"@ramonak/react-progress-bar": "^5.0.3",
"@t3-oss/env-nextjs": "^0.6.0",
"@tanstack/react-query": "^4.29.25",
"@trpc/client": "^10.34.0",
"@trpc/next": "^10.34.0",
"@trpc/react-query": "^10.34.0",
"@trpc/server": "^10.34.0",
"framer-motion": "^10.16.3",
"lodash": "^4.17.21",
"lucia": "^2.7.4",
"mongoose": "^7.6.8",
"next": "13.4.x",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.11.0",
"react-select": "^5.7.7",
"superjson": "^2.2.1",
"toast": "^0.5.4",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/eslint": "^8.44.2",
"@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": "^16.3.1",
"eslint": "^8.47.0",
"eslint-config-next": "^13.4.13",
"postcss": "^8.4.27",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.5.1",
"tailwindcss": "^3.3.3",
"tsx": "^3.13.0",
"typescript": "^5.1.6"
}
}