-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.64 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
{
"name": "notable",
"version": "0.0.0",
"private": true,
"description": "System to take voice notes with AI",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier \"app/**/*.{js,jsx,ts,tsx,json}\" \"./*.{js,cjs,ts,json}\" --check --ignore-path .gitignore .",
"format:fix": "prettier \"app/**/*.{js,jsx,ts,tsx,json}\" \"./*.{js,cjs,ts,json}\" --write --ignore-path .gitignore .",
"prepare": "husky"
},
"lint-staged": {
"app/**/*.{js,jsx,ts,tsx,json}": [
"prettier --write",
"next lint"
],
"./*.{js,ts,json}": [
"prettier --write",
"next lint"
]
},
"dependencies": {
"@ai-sdk/openai": "latest",
"@ai-sdk/provider": "^0.0.17",
"@ai-sdk/provider-utils": "^1.0.9",
"@ai-sdk/react": "latest",
"@vercel/postgres": "^0.9.0",
"ai": "3.3.4",
"next": "14.2.5",
"next-auth": "^4.24.7",
"next-themes": "^0.3.0",
"openai": "4.55.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-h5-audio-player": "3.9.3",
"react-hot-toast": "^2.4.1",
"sharp": "^0.33.4",
"speechmatics": "4.0.0",
"zod": "3.23.8",
"zustand": "4.5.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "14.2.5",
"@types/node": "17.0.45",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.16.1",
"autoprefixer": "10.4.19",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.0.11",
"lint-staged": "15.2.7",
"postcss": "8.4.39",
"prettier": "3.3.3",
"tailwindcss": "3.4.9",
"typescript": "5.1.6"
},
"keywords": []
}