-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.14 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
{
"name": "boilerplate_nextjs_app",
"version": "1.0.0",
"private": true,
"license": "MIT",
"author": "Éverton Toffanetto",
"description": "This application is a boilerplate for complex and large systems, especially those that need to scale with security and code quality.",
"repository": "https://github.com/everton-dgn/boilerplate_nextjs_app",
"scripts": {
"dev": "next dev --turbopack",
"start": "next start",
"build": "next build",
"lint": "biome check ./src",
"format": "biome check --write ./src",
"biome:ci": "biome ci ./src --no-errors-on-unmatched --files-ignore-unknown=true",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:c": "vitest run --coverage",
"test:w": "vitest",
"test:ui": "vitest --ui --coverage.enabled=true",
"test:ci": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:codegen": "playwright codegen http://localhost:3000",
"check:update": "yarn upgrade-interactive --latest",
"postinstall": "npx lefthook install"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"clsx": "2.1.1",
"next": "15.1.6",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"dotenv": "16.4.7",
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@playwright/test": "1.50.0",
"@svgr/webpack": "^8.1.0",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@types/jsdom-global": "3.0.7",
"@types/node": "22.10.10",
"@types/react": "19.0.8",
"@vitejs/plugin-react-swc": "3.7.2",
"@vitest/coverage-v8": "3.0.4",
"@vitest/ui": "3.0.4",
"autoprefixer": "10.4.20",
"cssnano": "7.0.6",
"jsdom": "26.0.0",
"jsdom-global": "3.0.2",
"lefthook": "1.10.10",
"postcss": "8.5.1",
"postcss-import": "16.1.0",
"postcss-preset-env": "10.1.3",
"sharp": "0.33.5",
"typescript": "5.7.3",
"vite": "6.0.11",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.0.4"
}
}