-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.03 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 4.03 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "next-js-boilerplate",
"version": "3.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.19.0",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"dev": "next dev | pino-pretty -c",
"build": "next build",
"build:webpack": "next build --webpack",
"preview": "next build && cp -r dist/static dist/standalone/dist/static && cp -r public dist/standalone/public && node dist/standalone/server.js",
"build-analyze": "cross-env ANALYZE=true pnpm run build",
"check-types": "tsc --noEmit --pretty",
"lint": "eslint .",
"lint-and-format-fix": "eslint . --fix && pnpm run format:fix",
"format": "prettier . --check",
"format:fix": "prettier '**/*.{js,jsx,ts,tsx,json,md}' --write",
"test": "vitest run --reporter=verbose",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:e2e": "playwright test",
"turbo:check-all": "turbo lint format type-check test",
"turbo:test": "turbo test",
"turbo:build": "turbo build",
"turbo:preview": "turbo preview",
"turbo:e2e": "turbo test:e2e"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.90.12",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"client-only": "^0.0.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"lucide-react": "^0.556.0",
"motion": "^12.23.25",
"next": "16.0.8",
"next-themes": "^0.4.6",
"pino": "^10.1.0",
"react": "19.2.1",
"react-dom": "19.2.1",
"recharts": "2.15.4",
"server-only": "^0.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@commitlint/types": "^20.2.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"@next/bundle-analyzer": "16.0.8",
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4.1.17",
"@tanstack/react-query-devtools": "^5.91.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/node": "^24",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.15",
"@vitest/eslint-plugin": "^1.5.2",
"autoprefixer": "^10.4.22",
"babel-plugin-react-compiler": "^1.0.0",
"cross-env": "^10.1.0",
"eslint": "^9",
"eslint-config-next": "16.0.8",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-playwright": "^2.4.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-tailwindcss": "4.0.0-beta.0",
"eslint-plugin-testing-library": "^7.13.5",
"husky": "^9.1.7",
"jsdom": "^27.3.0",
"lint-staged": "^16.2.7",
"pino-pretty": "^13.1.3",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.17",
"tsc-files": "^1.1.4",
"turbo": "latest",
"tw-animate-css": "^1.4.0",
"typescript": "5.8.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.15"
},
"engines": {
"node": ">=20.9.0"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}
}