-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.42 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
74
75
76
77
78
79
80
81
82
83
{
"name": "next-boilerplate",
"version": "3.4.0",
"private": true,
"scripts": {
"build": "next build",
"commit": "git add . && cz",
"clean": "rimraf node_modules .next .swc e2e/{report,test-results}",
"dev": "next dev --turbo",
"format": "prettier --write .",
"generate:svg": "pnpm svgr ./src/svgs/src",
"generate:component": "pnpm shadcn add",
"generate": "generate",
"lint:eslint": "next lint",
"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:e2e": "playwright test"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.6.1",
"@playwright/test": "^1.49.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",
"@vitejs/plugin-react": "^4.3.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "29.5.14",
"@types/node": "^22.10.5",
"@types/react": "^19.0.5",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"autoprefixer": "^10.4.20",
"commitizen": "^4.3.1",
"eslint": "^9.18.0",
"eslint-config-next": "^15.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-testing-library": "^7.1.1",
"husky": "^9.1.7",
"inquirer": "10.2.2",
"jsdom": "^25.0.1",
"lint-staged": "^15.3.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.9",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.1",
"shadcn": "^2.1.8",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8",
"tailwindcss": "^3.4.17"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.471.0",
"next": "^15.1.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-use": "^17.6.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"engines": {
"node": "22.x"
},
"packageManager": "pnpm@9.15.3"
}