-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.03 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.03 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
{
"name": "css-grid-generator",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"format": "prettier --write -l src",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@radix-ui/themes": "^3.2.1",
"@tailwindcss/vite": "^4.1.3",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"@xola/icons": "^1.1.6",
"clsx": "^2.1.1",
"lodash-es": "^4.17.21",
"posthog-js": "^1.258.5",
"prism-react-renderer": "^2.3.1",
"radix-ui": "^1.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-grid-layout": "^1.5.2",
"react-grid-overlay": "^1.0.3",
"react-resizable": "^3.0.5",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.11",
"tailwindcss-debug-screens": "^3.0.1",
"vite-tsconfig-paths": "^5.1.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.5.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-grid-layout": "^1.3.5",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"typescript": "^5.2.2",
"vite": "npm:rolldown-vite@latest",
"vite-tsconfig-paths": "^5.1.4"
},
"prettier": {
"semi": true,
"printWidth": 120,
"trailingComma": "all",
"singleQuote": false,
"bracketSpacing": true,
"useTabs": false,
"arrowParens": "always",
"bracketSameLine": false,
"tabWidth": 4,
"importOrder": [
"^[./]",
"^@/(.*)$"
],
"plugins": [
"@ianvs/prettier-plugin-sort-imports",
"prettier-plugin-tailwindcss"
]
}
}