forked from nsbradford/TalkFormAI
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.86 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
{
"name": "talkform",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "doppler run --project=talk-form-ai --config=dev -- next dev",
"dev-ellipsis": "next dev",
"build": "next build",
"build-doppler": "doppler run --project=talk-form-ai --config=dev -- yarn build",
"start": "next start",
"lint": "next lint",
"lint:fix": "yarn lint --fix",
"format": "npx prettier --write .",
"test:e2e": "doppler run --project=talk-form-ai --config=dev -- playwright test",
"test:e2e-gitpod": "playwright test",
"generate-db-types": "npx supabase gen types typescript --project-id \"uvthrievvhksvomqwowg\" --schema public > types/supabase.ts"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@supabase/auth-helpers-nextjs": "^0.7.4",
"@supabase/auth-helpers-react": "^0.4.2",
"@supabase/auth-ui-react": "^0.4.2",
"@supabase/supabase-js": "^2.33.1",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "20.5.7",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@vercel/analytics": "^1.0.2",
"autoprefixer": "10.4.15",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"next": "13.4.19",
"openai": "^4.3.1",
"postcss": "8.4.28",
"posthog-js": "^1.77.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.3",
"typescript": "5.2.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@playwright/test": "^1.37.1",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3"
}
}