-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "nextjs_template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:unit": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"test:e2e": "npx playwright test",
"test:e2e-ci": "start-server-and-test start 3000 'npx playwright test'",
"prepare": "husky"
},
"dependencies": {
"classnames": "^2.5.1",
"next": "15.1.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"tailwind-merge": "^2.5.4"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@playwright/test": "^1.48.2",
"@types/node": "^20",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@vitest/coverage-istanbul": "^2.1.4",
"@vitest/ui": "^2.1.4",
"eslint": "^8",
"eslint-config-next": "15.1.1",
"husky": "^9.1.6",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.8",
"start-server-and-test": "^2.0.9",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vitest": "^2.1.4"
},
"pnpm": {
"overrides": {
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2"
}
}
}