-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.67 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
{
"name": "astro",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/react": "^3.0.0",
"@astrojs/tailwind": "^5.0.0",
"@codemirror/lang-json": "^6.0.1",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.6",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@uiw/codemirror-theme-monokai": "^4.21.18",
"@uiw/react-codemirror": "^4.21.18",
"astro": "^3.0.7",
"astro-icon": "^0.8.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"lucide-react": "^0.274.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"svelte": "^4.2.0",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/file-saver": "^2.0.5",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"prettier-plugin-organize-attributes": "^1.0.0",
"prettier-plugin-tailwindcss": "^0.5.4"
},
"prettier": {
"useTabs": true,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"astroAllowShorthand": true,
"overrides": [
{
"files": "*.astro",
"options": {
"parser": "astro"
}
}
],
"pluginSearchDirs": [
"."
],
"plugins": [
"tailwindcss-animate",
"prettier-plugin-astro",
"prettier-plugin-organize-attributes",
"prettier-plugin-tailwindcss"
]
}
}