-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.02 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.02 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
{
"name": "figma-rules-builder",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run copy-preview-assets && next dev",
"build": "npm run copy-preview-assets && next build",
"start": "next start",
"lint": "eslint",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"golden:capture": "npx ts-node --project tsconfig.golden.json __tests__/golden/capture.ts",
"golden:verify": "npx ts-node --project tsconfig.golden.json __tests__/golden/verify.ts",
"copy-preview-assets": "node scripts/copy-preview-assets.js && node scripts/generate-tailwind-full.js"
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "1.1.13",
"@radix-ui/react-toast": "1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@swc/core": "^1.15.3",
"@tailwindcss/postcss": "^4.0.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@unocss/core": "^66.5.10-beta.1",
"@unocss/preset-wind": "^66.5.10-beta.1",
"class-variance-authority": "^0.7.1",
"clsx": "2.1.0",
"cmdk": "^1.1.1",
"jszip": "^3.10.1",
"lucide-react": "^0.554.0",
"next": "14.2.15",
"next-themes": "^0.4.6",
"prism-react-renderer": "^2.4.1",
"prismjs": "^1.30.0",
"re-resizable": "^6.11.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-resizable-panels": "^3.0.6",
"react-syntax-highlighter": "^16.1.0",
"recharts": "^2.15.4",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"tailwind-merge": "2.2.0",
"tailwindcss-v4": "npm:tailwindcss@^4.1.17",
"zod": "^4.1.13",
"zustand": "4.5.0"
},
"devDependencies": {
"@playwright/test": "1.40.0",
"@tailwindcss/typography": "0.5.10",
"@testing-library/jest-dom": "6.1.5",
"@testing-library/react": "14.1.2",
"@types/node": "20.11.5",
"@types/prismjs": "^1.26.5",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.1",
"@types/recharts": "^1.8.29",
"@types/sharp": "^0.31.1",
"@vitejs/plugin-react": "5.1.1",
"@vitest/coverage-v8": "^4.0.13",
"@vitest/ui": "1.2.0",
"autoprefixer": "10.4.22",
"eslint": "8.57.1",
"eslint-config-next": "14.2.15",
"jsdom": "24.0.0",
"postcss": "8.5.6",
"tailwindcss": "3.4.1",
"ts-node": "^10.9.2",
"typescript": "5.3.3",
"vitest": "1.2.0"
}
}