-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.3 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
103
104
105
106
{
"name": "chunky-crayon-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"email": "email dev --port 3005",
"lint": "jest --config test/jest.lint.ts",
"check-types": "tsc",
"prettier": "prettier . --ignore-path .gitignore '**/*.+(js|mjs|jsx|json|ts|tsx|css|html|md)'",
"format": "bun prettier --write ",
"check-format": "bun prettier --list-different",
"preinstall": "bunx only-allow bun",
"postinstall": "prisma generate",
"prisma:generate": "prisma generate",
"prisma:studio": "prisma studio",
"prepare": "husky"
},
"jest-runner-eslint": {
"cliOptions": {
"ignorePath": "./.gitignore"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tsc-files --noEmit ./next-env.d.ts ./next-auth.d.ts ./oslllo-potrace.d.ts"
],
"**/*.+(js|jsx|json|ts|tsx|html|md)": [
"prettier --ignore-path .gitignore --write",
"jest --findRelatedTests --passWithNoTests"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/pro-duotone-svg-icons": "^6.5.2",
"@fortawesome/pro-light-svg-icons": "^6.5.2",
"@fortawesome/pro-regular-svg-icons": "^6.5.2",
"@fortawesome/pro-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mailchimp/mailchimp_marketing": "^3.0.80",
"@neondatabase/serverless": "^0.9.3",
"@prisma/adapter-neon": "^5.14.0",
"@prisma/client": "5.14.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.2.1",
"@react-pdf/renderer": "^3.4.4",
"@sentry/nextjs": "^8",
"@stripe/stripe-js": "^3.4.0",
"@types/qrcode": "^1.5.5",
"@vercel/analytics": "^1.2.2",
"@vercel/blob": "^0.22.3",
"@vercel/postgres": "^0.8.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"formik": "^2.4.6",
"lucide-react": "^0.378.0",
"next": "14.2.3",
"next-auth": "beta",
"next-plausible": "^3.12.0",
"openai": "^4.47.1",
"oslllo-potrace": "^2.0.1",
"qrcode": "^1.5.3",
"react": "^18",
"react-dom": "^18",
"react-email": "^2.1.2",
"react-typed": "^2.0.12",
"react-wrap-balancer": "^1.1.1",
"resend": "^3.2.0",
"sharp": "^0.33.4",
"stripe": "^15.6.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/mailchimp__mailchimp_marketing": "^3.0.20",
"@types/node": "^20.12.12",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-runner-eslint": "^2.2.0",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^15.2.2",
"postcss": "^8",
"prettier": "^3.2.5",
"prisma": "^5.14.0",
"tailwindcss": "^3.4.3",
"ts-node": "^10.9.2",
"tsc-files": "^1.1.4",
"typescript": "^5.4.5"
}
}