-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.4 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.4 KB
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
{
"name": "adopt-an-inmate",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "pnpm exec eslint .",
"lint:fix": "pnpm exec eslint . --fix",
"tsc": "pnpm exec tsc --noEmit",
"prettier": "pnpm exec prettier --check .",
"prettier:fix": "pnpm exec prettier --write .",
"prepare": "husky",
"pre-commit": "concurrently \"pnpm run tsc\" \"pnpm run lint\" \"pnpm run prettier\"",
"test": "vitest",
"gen-schema": "node scripts/generate-schema.mjs"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@huggingface/inference": "^4.13.4",
"@mondaydotcomorg/api": "^11.0.1",
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.52.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"next": "^15.5.9",
"nodemailer": "^7.0.9",
"radix-ui": "^1.4.3",
"react": "^19.1.2",
"react-dom": "^19.1.2",
"react-hook-form": "^7.65.0",
"react-icons": "^5.5.0",
"react-select": "^5.10.2",
"states-us": "^1.1.1",
"tailwind-merge": "^3.3.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@next/env": "^15.5.4",
"@next/eslint-plugin-next": "^15.5.4",
"@tailwindcss/postcss": "^4.1.13",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^22",
"@types/nodemailer": "^7.0.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"@vitejs/plugin-react": "^5.0.4",
"concurrently": "^9.2.1",
"eslint": "^9.32.0",
"eslint-config-next": "15.5.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.5",
"jsdom": "^27.0.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.14",
"supabase": "^2.54.11",
"tailwindcss": "^4.1.13",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"pnpm": {
"overrides": {
"nanoid": "^3.3.8"
},
"ignoredBuiltDependencies": [
"@tailwindcss/oxide",
"esbuild"
],
"onlyBuiltDependencies": [
"sharp",
"supabase"
]
},
"overrides": {
"nanoid": "^3.3.8"
}
}