-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.81 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
{
"name": "postimp-scaffold",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:docker": "docker compose -f docker-compose.test.yml up --build --abort-on-container-exit",
"dev:docker": "docker compose -f docker-compose.dev.yml up --build",
"dev:docker:down": "docker compose -f docker-compose.dev.yml down --volumes",
"format": "biome format --write .",
"format:check": "biome format .",
"prepare": "husky",
"vercel:env:push": "bash scripts/sync-env.sh"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css}": [
"biome format --write --no-errors-on-unmatched"
],
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
]
},
"dependencies": {
"@eslint/compat": "^2.0.2",
"@lottiefiles/dotlottie-react": "^0.18.3",
"@supabase/ssr": "^0.9.0",
"@supabase/supabase-js": "^2.98.0",
"@tailwindcss/typography": "^0.5.19",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
"daisyui": "^5.5.19",
"jose": "^6.2.1",
"next": "^15.5.12",
"openai": "^6.25.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"twilio": "^5.12.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.5",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9",
"eslint-config-next": "^15.5.12",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"tailwindcss": "^4",
"typescript": "5.9.3",
"vitest": "^4.0.18"
}
}