-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 2.15 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
69
70
71
72
73
74
75
76
77
{
"name": "gachon-tools",
"description": "과제 대시보드 · 사이버캠퍼스 어시스턴트",
"version": "2.1.0",
"license": "MIT",
"type": "module",
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest",
"coverage": "vitest run --coverage",
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"generate:snapshots": "tsx scripts/generateSnapshot.ts"
},
"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-error-boundary": "^4.0.13",
"react-hot-toast": "^2.4.1",
"react-hotkeys-hook": "^4.4.1",
"tailwind-merge": "^2.5.2",
"zod": "^3.23.8",
"zustand": "^4.5.5"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.26",
"@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": "^4.3.3",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.10",
"dotenv": "^16.4.5",
"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",
"tsx": "^4.19.2",
"typescript": "^5.2.2",
"vite": "^5.4.6",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.1.3"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"packageManager": "[email protected]",
"engines": {
"node": "20.x",
"pnpm": "8.15.0"
}
}