-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
101 lines (101 loc) · 2.99 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "meetie-service",
"packageManager": "[email protected]",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "ANALYZE=true next build",
"start": "next start",
"lint": "eslint './src/**/*.{ts,tsx,js,jsx}'",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx,js,jsx}'",
"format": "prettier --write",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"analyze": "ANALYZE=true next build"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-visually-hidden": "^1.1.0",
"@sentry/nextjs": "^8",
"@sentry/utils": "^8.31.0",
"@sentry/webpack-plugin": "^2.22.4",
"@supabase/ssr": "^0.5.0",
"@supabase/supabase-js": "^2.45.1",
"@tanstack/react-query": "^5.52.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"next": "14.2.5",
"next-themes": "^0.2.0",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@next/bundle-analyzer": "^15.0.4",
"@playwright/test": "1.41",
"@storybook/addon-docs": "^8.3.5",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-interactions": "^8.3.5",
"@storybook/addon-links": "^8.3.5",
"@storybook/addon-onboarding": "^8.3.5",
"@storybook/blocks": "^8.3.5",
"@storybook/nextjs": "^8.3.5",
"@storybook/react": "^8.3.5",
"@storybook/test": "^8.3.5",
"@tanstack/react-query-devtools": "^5.52.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/eslint": "^8.56.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"@vitejs/plugin-react": "^4.3.2",
"chromatic": "^11.16.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-storybook": "^0.9.0",
"husky": "^9.1.4",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.7",
"postcss": "^8",
"prettier": "^3.3.3",
"storybook": "^8.3.5",
"tailwindcss": "^3.4.1",
"typescript": "5.4.5",
"vite": "^5.4.8",
"vitest": "^2.1.2",
"webpack": "^5.95.0"
},
"lint-staged": {
"apps/**/*.{js,jsx,ts,tsx,css,scss}": [
"prettier --write",
"eslint --fix"
],
"packages/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}