-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.96 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.96 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
{
"name": "mops-new",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "NODE_ENV=development astro dev",
"build": "NODE_ENV=production astro build",
"preview": "NODE_ENV=production astro preview",
"astro": "astro",
"lint": "eslint 'src/**/*.ts'",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"clean": "rm -rf dist .astro node_modules"
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/cloudflare": "^12.5.0",
"@astrojs/mdx": "^4.2.4",
"@astrojs/react": "^4.2.4",
"@fontsource-variable/inter": "^5.2.5",
"@radix-ui/react-dropdown-menu": "^2.1.11",
"@radix-ui/react-select": "^2.2.2",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-tabs": "^1.1.9",
"@radix-ui/react-tooltip": "^1.2.3",
"@tailwindcss/vite": "^4.1.3",
"@types/canvas-confetti": "^1.9.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"astro": "^5.7.4",
"canvas-confetti": "^1.9.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.503.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.2.0",
"tailwindcss": "^4.1.3",
"tw-animate-css": "^1.2.8"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260404.1",
"@types/node": "^25.5.2",
"typescript": "^5.9.3",
"wrangler": "^4.80.0",
"eslint": "^9.21.0",
"@eslint/js": "^9.21.0",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"eslint-plugin-astro": "^1.3.1",
"globals": "^16.0.0",
"prettier": "^3.5.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"husky": "^9.1.7",
"lint-staged": "^15.4.3"
},
"lint-staged": {
"*.{ts,js,mjs}": [
"prettier --write"
],
"*.astro": [
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
}
}