-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.5 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
{
"name": "slice",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "jest",
"test:watch": "jest --watch",
"test:changed": "jest --onlyChanged",
"test:ci": "jest --runInBand --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@tanstack/react-query": "^5.90.10",
"@tiptap/extension-highlight": "^3.13.0",
"@tiptap/extension-placeholder": "^3.12.1",
"@tiptap/extension-text-align": "^3.13.0",
"@tiptap/extension-youtube": "^3.13.0",
"@tiptap/pm": "^3.12.1",
"@tiptap/react": "^3.12.1",
"@tiptap/starter-kit": "^3.12.1",
"clsx": "^2.1.1",
"framer-motion": "^12.23.24",
"next": "15.4.10",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-error-boundary": "^6.0.0",
"react-intersection-observer": "^10.0.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@eslint/eslintrc": "^3",
"@storybook/addon-a11y": "^10.0.8",
"@storybook/addon-actions": "^9.0.8",
"@storybook/addon-docs": "^10.0.8",
"@storybook/addon-vitest": "^10.0.8",
"@storybook/nextjs-vite": "^10.0.8",
"@storybook/test": "^8.6.14",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4",
"@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",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/browser-playwright": "^4.0.12",
"@vitest/coverage-v8": "^4.0.12",
"autoprefixer": "^10.4.22",
"eslint": "^9",
"eslint-config-next": "15.4.10",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-storybook": "^10.0.8",
"eslint-plugin-testing-library": "^7.13.4",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^16.2.7",
"playwright": "^1.56.1",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"storybook": "^10.0.8",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5",
"vite": "^7.2.4",
"vitest": "^4.0.12"
}
}