-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.96 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.96 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
53
54
55
56
57
58
59
60
61
62
63
{
"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",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"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": {
"clsx": "^2.1.1",
"next": "15.3.1",
"next-intl": "^4.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sharp": "^0.33.5",
"tailwind-merge": "^3.2.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.52.0",
"@tailwindcss/postcss": "^4.1.5",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20.17.32",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.3",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-v8": "^3.1.3",
"@vitest/ui": "^3.1.3",
"eslint": "^9",
"eslint-config-next": "^15.3.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.4.0",
"jsdom": "^25.0.1",
"lefthook": "^1.11.12",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"tailwindcss": "^4.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
}
}