-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.9 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
{
"private": true,
"type": "module",
"version": "1.0.1",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "plugma dev",
"build": "plugma build",
"package": "node scripts/package.mjs",
"release": "plugma release",
"prepare": "husky",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"vitest": "npx vitest",
"playwright": "npx playwright test"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"npm run lint -- --fix",
"npm run format"
],
"*.{json,md,css,scss,yml,yaml}": [
"npm run format"
]
},
"devDependencies": {
"@commitlint/cli": "^20.4.0",
"@commitlint/config-conventional": "^20.4.0",
"@figma/plugin-typings": "^1.100.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"globals": "^15.11.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"plugma": "^2.2.3",
"shadcn-ui": "^0.9.5",
"tslib": "^2.8.0",
"tw-animate-css": "^1.4.0",
"typescript": "~5.6.2",
"vite": "^7.0.0"
},
"dependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.58.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/vite": "^4.1.18",
"@typescript-eslint/parser": "^8.46.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"eslint": "^9.39.2",
"lucide-react": "^0.556.0",
"motion": "^12.23.26",
"nanoid": "^5.1.6",
"prettier": "^3.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.0",
"zustand": "^5.0.9"
}
}