-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.18 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
{
"name": "starter-app",
"version": "0.1.0",
"description": "Next.js starter with Tailwind v4, shadcn, Zustand, Lucide React, Ultracite, Vitest, and Storybook",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jasonjun/next-starter.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "ultracite check",
"format": "ultracite fix",
"starter:init": "node scripts/init-starter.mjs",
"test": "vitest",
"test:watch": "vitest --watch",
"test:run": "vitest run",
"check": "ultracite check",
"fix": "ultracite fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"geist": "1.7.0",
"lucide-react": "^0.577.0",
"next": "16.1.6",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"shadcn": "^4.0.5",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.1",
"@storybook/addon-a11y": "^10.2.17",
"@storybook/addon-docs": "^10.2.17",
"@storybook/addon-onboarding": "^10.2.17",
"@storybook/addon-vitest": "^10.2.17",
"@storybook/nextjs-vite": "^10.2.17",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.0",
"@vitest/browser-playwright": "4.1.0",
"@vitest/coverage-v8": "4.1.0",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"eslint-plugin-storybook": "^10.2.17",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.4.0",
"oxfmt": "^0.40.0",
"oxlint": "^1.55.0",
"playwright": "^1.58.2",
"storybook": "^10.2.17",
"tailwindcss": "^4",
"typescript": "^5",
"ultracite": "7.3.0",
"vite": "^8.0.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs}": [
"ultracite fix"
]
}
}