-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.5 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.5 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
{
"name": "intelts",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "run-p -l -c --aggregate-output lint:*",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"fix": "run-s fix:prettier fix:eslint",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run lint:prettier -- --write"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.14.0",
"@types/react-speech-recognition": "^3.9.5",
"@vercel/analytics": "^1.3.1",
"@vercel/postgres": "^0.8.0",
"chalk": "^5.3.0",
"lottie-react": "^2.4.0",
"next": "14.2.1",
"next-auth": "^4.24.7",
"prisma": "^5.14.0",
"prompt-sync": "^4.2.0",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.1.0",
"react-speech-recognition": "^3.10.0",
"regenerator-runtime": "^0.14.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8",
"eslint-config-next": "14.2.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.17.4",
"npm-run-all": "^4.1.5",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}