-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.61 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.61 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
{
"name": "spotify-clone",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --experimental-https",
"build": "next build",
"start": "next start",
"lint": "eslint",
"format": "prettier --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "vitest --project=storybook",
"playwright:install": "npx playwright install --with-deps",
"e2e": "npx playwright test",
"e2e:ui": "npx playwright test --ui",
"build:design-tokens": "style-dictionary build"
},
"dependencies": {
"better-auth": "^1.4.6",
"better-sqlite3": "^12.5.0",
"clsx": "^2.1.1",
"next": "16.0.10",
"react": "19.2.0",
"react-aria-components": "^1.14.0",
"react-dom": "19.2.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@playwright/test": "^1.57.0",
"@storybook/addon-a11y": "^10.1.4",
"@storybook/addon-docs": "^10.1.4",
"@storybook/addon-onboarding": "^10.1.4",
"@storybook/addon-vitest": "^10.1.4",
"@storybook/nextjs-vite": "^10.1.4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/browser-playwright": "^4.0.15",
"@vitest/coverage-v8": "^4.0.15",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "16.0.7",
"eslint-plugin-storybook": "^10.1.4",
"playwright": "^1.57.0",
"prettier": "^3.7.4",
"storybook": "^10.1.4",
"style-dictionary": "^5.1.1",
"typescript": "^5",
"vite": "^7.2.7",
"vitest": "^4.0.15"
}
}