-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.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
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
{
"name": "bunjy",
"private": true,
"scripts": {
"build": "turbo run build",
"build:api": "turbo run build --filter=api",
"build:web": "turbo run build --filter=web",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"start": "npm run start --workspace=api",
"lint-staged": "lint-staged",
"prepare": "husky install",
"commit": "./node_modules/cz-customizable/standalone.js"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "1.4.12",
"@types/recharts": "^1.8.29",
"bcrypt": "^5.1.1",
"cross-env": "^7.0.3",
"husky": "^9.1.7",
"jsonwebtoken": "^9.0.2",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.2.5",
"prisma": "^5.22.0",
"recharts": "^2.13.3",
"rimraf": "^6.0.1",
"supabase": "^1.219.2",
"tailwindcss": "^3.4.15",
"turbo": "^2.2.3",
"typescript": "5.5.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@google/generative-ai": "0.21.0",
"@hookform/resolvers": "^3.9.1",
"@mantine/core": "^7.13.4",
"@mantine/hooks": "^7.13.4",
"@mantine/notifications": "^7.13.4",
"@nestjs/config": "^3.3.0",
"@nestjs/swagger": "8.0.2",
"@nestjs/terminus": "^10.2.3",
"@next-auth/supabase-adapter": "^0.2.1",
"@next/eslint-plugin-next": "^12.3.0",
"@prisma/client": "^5.22.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/supabase-js": "^2.46.1",
"@swc/cli": "^0.5.1",
"@swc/core": "^1.9.2",
"@testing-library/react": "^16.0.1",
"@types/testing-library__react": "^10.2.0",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"class-variance-authority": "^0.7.0",
"compression": "1.7.5",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"esbuild": "^0.19.12",
"next-auth": "^4.24.10",
"next-themes": "^0.4.3",
"nodemailer": "^6.9.16",
"nookies": "^2.5.2",
"nuqs": "^2.2.1",
"react-diff-view": "^3.3.0",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.6.1",
"refractor": "^4.8.1",
"remark-gfm": "^4.0.0",
"tailwind-merge": "^2.5.4",
"tailwindcss": "^3.4.14",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}