-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.38 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.38 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
{
"name": "openbento",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && node scripts/generate-doc-routes.mjs",
"build:vite": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"ci": "npm run lint && npm run type-check && npm run build",
"before-commit": "npm run format && npm run lint:fix && npm run type-check",
"analytics:supabase:init": "node scripts/supabase-analytics-init.mjs"
},
"dependencies": {
"@mdx-js/rollup": "^3.1.1",
"file-saver": "^2.0.5",
"framer-motion": "^11.0.0",
"jszip": "^3.10.1",
"lucide-react": "^0.562.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-icons": "^5.5.0",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^16.5.0",
"prettier": "^3.7.4",
"typescript": "~5.8.2",
"typescript-eslint": "^8.51.0",
"vite": "^6.2.0"
}
}