-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.87 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": "gachon-tools",
"description": "가천대학교 사이버캠퍼스 확장프로그램",
"version": "2.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preinstall": "npx only-allow pnpm",
"prepare": "husky"
},
"dependencies": {
"cheerio": "^1.0.0",
"clsx": "^2.1.1",
"date-fns": "^2.30.0",
"domhandler": "^5.0.3",
"framer-motion": "^10.16.4",
"lucide-react": "^0.441.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-easy-crop": "^5.0.8",
"react-hotkeys-hook": "^4.4.1",
"react-shadow": "^20.4.0",
"tailwind-merge": "^2.5.2",
"zustand": "^4.5.5"
},
"devDependencies": {
"@crxjs/vite-plugin": "^1.0.14",
"@thedutchcoder/postcss-rem-to-px": "^0.0.2",
"@types/chrome": "^0.0.268",
"@types/node": "^20.8.9",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.10",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss-prefix-selector": "^1.16.1",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.9",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-tsconfig-paths": "^4.3.2"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"packageManager": "pnpm@8.15.0",
"engines": {
"node": "20.x",
"pnpm": "8.15.0"
}
}