-
Notifications
You must be signed in to change notification settings - Fork 269
/
Copy pathpackage.json
83 lines (83 loc) · 2.14 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
{
"name": "chatgpt-next",
"description": "微信风格的 ChatGPT,基于 Next.js 构建,私有化部署的最佳选择!",
"version": "0.5.0",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"eslint": "eslint --ext .ts,.tsx,.js .",
"eslint:fix": "eslint --ext .ts,.tsx,.js --fix .",
"prettier": "prettier -l \"./**/*\"",
"prettier:fix": "prettier --write -l \"./**/*\"",
"prepare": "husky install",
"preversion": "npm run build && rimraf .next/cache",
"postversion": "git push --follow-tags && npm publish"
},
"bin": {
"chatgpt-next": "./bin.js"
},
"files": [
".next",
"app",
"public",
"bin.js",
"LICENSE",
"next.config.js",
"package.json",
"pnpm-lock.yaml",
"postcss.config.js",
"README.md",
"tailwind.config.js",
"tsconfig.json"
],
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint",
"prettier --list-different"
],
"*.{json,yml,md}": [
"prettier --list-different"
]
},
"dependencies": {
"@heroicons/react": "2.0.16",
"@types/lodash.omit": "^4.5.7",
"@types/lodash.throttle": "^4.1.7",
"@types/markdown-it": "12.2.3",
"@types/node": "18.15.11",
"@types/react": "18.0.31",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"autoprefixer": "10.4.14",
"classnames": "2.3.2",
"cookies-next": "2.1.1",
"dayjs": "1.11.7",
"eslint": "8.37.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eventsource-parser": "^1.0.0",
"is-mobile": "4.0.0",
"lodash.omit": "^4.5.0",
"lodash.throttle": "^4.1.1",
"markdown-it": "13.0.1",
"markdown-it-katex": "^2.0.3",
"next": "13.2.4",
"postcss": "8.4.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"sharp": "^0.32.0",
"tailwindcss": "3.3.0",
"typescript": "5.0.2"
},
"devDependencies": {
"husky": "8.0.3",
"lint-staged": "13.2.0",
"prettier": "2.8.7",
"rimraf": "^5.0.1"
}
}