-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.12 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.12 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
{
"name": "haru",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"test:ci": "vitest run --coverage",
"test:e2e": "playwright test",
"lint": "next lint",
"eslint:check": "eslint '**/*.{js,ts,jsx,tsx}'",
"eslint": "eslint --fix '**/*.{js,ts,jsx,tsx}'",
"format:check": "prettier --check '**/*.{js,ts,jsx,tsx,json,yaml,md,css}'",
"format": "prettier --write '**/*.{js,ts,jsx,tsx,json,yaml,md,css}'",
"type-check": "tsc --noEmit",
"prepare": "lefthook install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN"
},
"dependencies": {
"@lukemorales/query-key-factory": "^1.3.4",
"@sentry/nextjs": "^9.42.1",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-query-devtools": "^5.84.1",
"@vercel/speed-insights": "^1.2.0",
"@wavesurfer/react": "^1.0.11",
"chart.js": "^4.5.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"immer": "^10.1.1",
"import-in-the-middle": "^1.14.2",
"next": "15.3.4",
"react": "^19.1.0",
"react-calendar": "^6.0.0",
"react-dom": "^19.1.0",
"react-intersection-observer": "^9.16.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"require-in-the-middle": "^7.5.2",
"typed.js": "^2.1.0",
"typescript-eslint": "^8.35.0",
"uuid": "^11.1.0",
"wavesurfer.js": "^7.10.1",
"zod": "^4.0.5",
"zustand": "^5.0.6"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.0.1",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.31.0",
"@evilmartians/lefthook": "^1.12.2",
"@next/eslint-plugin-next": "^15.4.6",
"@playwright/test": "^1.54.2",
"@storybook/addon-a11y": "^9.0.17",
"@storybook/addon-docs": "^9.0.17",
"@storybook/addon-onboarding": "^9.0.17",
"@storybook/addon-vitest": "^9.0.17",
"@storybook/nextjs": "^9.0.17",
"@storybook/nextjs-vite": "^9.0.17",
"@storybook/test": "^8.6.14",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.1.11",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^20.19.8",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/webpack": "^5.28.5",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"chromatic": "^13.1.2",
"commitlint-config-gitmoji": "^2.3.1",
"commitlint-config-lerna-scopes": "^19.8.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.31.0",
"eslint-config-next": "15.3.4",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-storybook": "^9.0.17",
"playwright": "^1.54.1",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"storybook": "^9.0.17",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3",
"typescript-eslint": "^8.37.0",
"vitest": "^3.2.4",
"webpack": "^5.100.2"
}
}