-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.23 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
{
"name": "next-template",
"author": "João Gabriel <main.joaogabrielsg@gmail.com>",
"description": "A template for Next.js projects.",
"version": "0.1.0",
"private": true,
"scripts": {
"setup:project": "pnpm install && pnpm lefthook install && prisma generate",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typeCheck": "tsc",
"test:unit": "vitest src/ --run --passWithNoTests",
"test:unit:watch": "vitest src/",
"test:unit:coverage": "vitest src/ --run --passWithNoTests --coverage",
"test:unit:coverage:watch": "vitest src/ --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@prisma/client": "5.20.0",
"@t3-oss/env-nextjs": "^0.11.1",
"clsx": "^2.1.1",
"next": "14.2.15",
"next-auth": "^4.24.8",
"next-intl": "^3.21.1",
"react": "^18",
"react-dom": "^18",
"sharp": "^0.33.5",
"tailwind-merge": "^2.5.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@playwright/test": "^1.48.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/coverage-v8": "2.1.3",
"@vitest/eslint-plugin": "^1.1.7",
"@vitest/ui": "^2.1.3",
"eslint": "^8",
"eslint-config-next": "14.2.15",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-perfectionist": "^3.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-unicorn": "^56.0.0",
"jiti": "^1.21.6",
"jsdom": "^25.0.1",
"lefthook": "^1.7.18",
"postcss": "^8",
"prettier": "^3.3.3",
"prisma": "^5.20.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5",
"vitest": "^2.1.3"
},
"prisma": {
"schema": "src/db/prisma/schema.prisma"
}
}