-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.5 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
{
"name": "@movie-magic/movie-magic-cursor",
"description": "Movie Magic Cursor",
"private": true,
"version": "0.0.1",
"scripts": {
"build": "run-s _codegen _build",
"build-storybook": "storybook build --webpack-stats-json",
"ci-validate": "run-s build-storybook",
"clean": "rimraf .turbo node_modules build coverage .next next-env.d.ts out src/generated storybook-static",
"dev": "next dev --port 3005",
"format": "prettier --list-different '**/*.{css,js,jsx,ts,tsx,json,md}'",
"format:fix": "npm run format -- --write",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"start": "next start",
"storybook": "storybook dev -p 6011",
"test": "jest --coverage",
"_build": "next build",
"_codegen": "echo add any code generation steps here"
},
"dependencies": {
"@radix-ui/react-slot": "^1.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.428.0",
"next": "^14.2.5",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@code-shaper/jest-config": "^1.*",
"@dword-design/eslint-plugin-import-alias": "^5.0.1",
"@faker-js/faker": "^8.4.1",
"@storybook/addon-a11y": "^8.2.9",
"@storybook/addon-docs": "^8.2.9",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/nextjs": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/test": "^8.2.9",
"@storybook/theming": "^8.2.9",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.4.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"deepmerge": "^4.3.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-plugin-storybook": "^0.8.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"msw": "^2.3.5",
"postcss": "^8.4.41",
"postcss-import": "^16.1.0",
"storybook": "^8.2.9",
"storybook-dark-mode": "^4.0.2",
"tailwindcss": "^3.4.10",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"msw": {
"workerDirectory": [
"public"
]
}
}