-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.32 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "next-boilerplate",
"version": "4.0.2",
"private": true,
"scripts": {
"build": "next build",
"commit": "git add . && cz",
"clean": "rimraf node_modules .next .swc src/e2e/test_output",
"dev": "next dev --turbo",
"format": "prettier --write .",
"generate:svg": "pnpm svgr ./src/svgs/src",
"generate": "generate",
"lint:eslint": "eslint .",
"lint:typescript": "tsc --noEmit",
"lint": "pnpm lint:typescript && pnpm lint:eslint",
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"release": "semantic-release",
"start": "next start",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test"
},
"devDependencies": {
"@commitlint/cli": "21.2.1",
"@commitlint/config-conventional": "21.2.0",
"@commitlint/cz-commitlint": "21.2.0",
"@eslint/compat": "2.1.0",
"@eslint/js": "10.0.1",
"@playwright/test": "1.61.1",
"@remcolakens/simple-component-generator": "1.0.5",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@svgr/cli": "8.1.0",
"@tailwindcss/postcss": "4.3.3",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "24.13.3",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.3",
"@vitest/coverage-v8": "4.1.10",
"@vitest/ui": "4.1.10",
"commitizen": "4.3.2",
"eslint": "10.7.0",
"eslint-config-next": "16.2.10",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-playwright": "2.10.5",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-testing-library": "7.16.2",
"husky": "9.1.7",
"inquirer": "10.2.2",
"jsdom": "29.1.1",
"lint-staged": "17.0.8",
"postcss": "8.5.19",
"prettier": "3.9.5",
"prettier-plugin-organize-imports": "4.3.0",
"prettier-plugin-tailwindcss": "0.8.1",
"rimraf": "6.1.3",
"semantic-release": "25.0.7",
"tailwindcss": "4.3.3",
"typescript": "6.0.3",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.1.10"
},
"dependencies": {
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"lucide-react": "1.24.0",
"next": "16.2.10",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-use": "17.6.1",
"tailwind-merge": "3.6.0",
"tailwindcss-animate": "1.0.7"
},
"engines": {
"node": "24.x"
},
"packageManager": "pnpm@11.13.1"
}