-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.5 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.5 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@delook-dev/delook",
"author": {
"name": "@waterbinnn",
"email": "ewaterbinn@gmail.com",
"url": "https://github.com/waterbinnn"
},
"homepage": "https://www.delook.co.kr",
"repository": {
"type": "git",
"url": "git+https://github.com/delook-dev/delook"
},
"bugs": {
"url": "https://github.com/delook-dev/delook/issues"
},
"engines": {
"node": ">=20"
},
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "rm -rf build && tsc -b && vite build",
"extension-version": "node scripts/extension-version.js",
"lint": "eslint ./src",
"lint:debug": "eslint ./src --debug",
"lint:fix": "eslint ./src --fix",
"preview": "vite preview",
"format": "prettier --check \"src/**/*\" --write",
"lint-staged": "lint-staged",
"postinstall": "git config core.hooksPath .husky && chmod +x .husky/pre-commit && chmod +x .husky/commit-msg"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-resizable-panels": "^3.0.6",
"react-router-dom": "^7.4.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/js": "^8.57.0",
"@hookform/resolvers": "^5.0.1",
"@mdx-js/mdx": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@mdx-js/rollup": "^3.1.0",
"@prerenderer/renderer-puppeteer": "^1.2.4",
"@prerenderer/rollup-plugin": "^0.3.12",
"@radix-ui/react-checkbox": "^1.1.5",
"@radix-ui/react-collapsible": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-popover": "^1.1.7",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-toast": "^1.2.7",
"@radix-ui/react-tooltip": "^1.1.8",
"@tailwindcss/typography": "^0.5.16",
"@types/chrome": "^0.0.313",
"@types/node": "^22.13.16",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"acorn": "^8.0.0",
"autoprefixer": "^10.4.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "9.21.0",
"eslint-import-resolver-typescript": "^4.3.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^3.18.0",
"globals": "^15.15.0",
"lint-staged": "^15.5.0",
"lucide-react": "^0.487.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"puppeteer": "^24.6.1",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.55.0",
"react-syntax-highlighter": "^15.6.1",
"rehype-highlight": "^7.0.2",
"rehype-stringify": "^10.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-mdx-frontmatter": "^5.1.0",
"rollup": "^4.40.0",
"rollup-plugin-visualizer": "^5.14.0",
"tailwind-merge": "^3.0.1",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.2.5",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.0",
"vite-plugin-pages": "^0.33.0",
"vite-plugin-static-copy": "^2.3.0",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4",
"zod": "^3.24.2",
"zustand": "^5.0.3"
},
"volta": {
"node": "22.19.0",
"yarn": "4.9.4"
}
}