-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
102 lines (102 loc) · 3.09 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
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
{
"name": "gptlink-web",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prettier:write": "prettier --write \"**/*.{ts,tsx,html}\" --cache",
"prepare": "husky install"
},
"dependencies": {
"@iconify/react": "^4.1.0",
"@radix-ui/react-alert-dialog": "^1.0.4",
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-label": "^2.0.1",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.4",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.6",
"@types/js-cookie": "^3.0.3",
"dayjs": "^1.11.7",
"file-saver": "^2.0.5",
"html-to-image": "^1.11.11",
"i18next": "^22.5.0",
"lodash-es": "^4.17.21",
"lucide-react": "^0.233.0",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.44.3",
"react-hot-toast": "^2.4.1",
"react-i18next": "^12.3.1",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.11.2",
"rehype-highlight": "^6.0.0",
"rehype-katex": "^6.0.3",
"rehype-raw": "^6.1.1",
"remark-breaks": "^3.0.3",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"tailwindcss": "^3.3.2",
"tailwindcss-animate": "^1.0.5",
"zustand": "^4.3.8"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@hookform/resolvers": "^3.1.0",
"@tailwindcss/typography": "^0.5.9",
"@types/file-saver": "^2.0.5",
"@types/lodash-es": "^4.17.7",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.14",
"class-variance-authority": "^0.6.0",
"classnames": "^2.3.2",
"clsx": "^1.2.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"eslint-plugin-tailwindcss": "^3.12.1",
"husky": "^8.0.3",
"less": "^4.1.3",
"lint-staged": "^13.2.2",
"postcss": "^8.4.24",
"react-infinite-scroll-component": "^6.1.0",
"tailwind-merge": "^1.13.0",
"typescript": "^5.0.2",
"uuid": "^9.0.0",
"vite": "^4.3.9",
"weixin-js-sdk-ts": "^1.6.1",
"zod": "^3.21.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run prettier:write",
"npm run lint --fix",
"git add ."
]
}
}