-
Notifications
You must be signed in to change notification settings - Fork 406
/
package.json
86 lines (86 loc) · 2.56 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
{
"name": "chatgpt-vercel",
"type": "module",
"version": "0.0.1",
"private": true,
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=7.29.0 <8"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"dev": "cross-env NODE_ENV=development astro dev",
"start": "cross-env NODE_ENV=development astro dev --host",
"build": "astro build",
"build-vercel": "cross-env VERCEL=true astro build",
"server": "cross-env HOST=0.0.0.0 PORT=3000 node ./dist/server/entry.mjs",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint --fix --quiet --ext .js,.ts,.tsx,.astro .",
"lintcheck": "eslint --quiet --ext .js,.ts,.tsx,.astro .",
"typecheck": "tsc"
},
"dependencies": {
"@astrojs/node": "^5.1.1",
"@astrojs/react": "^2.1.0",
"@astrojs/solid-js": "^2.1.0",
"@astrojs/tailwind": "^3.1.1",
"@astrojs/vercel": "^3.2.1",
"antd": "^5.3.2",
"astro": "^2.1.3",
"dayjs": "^1.11.7",
"eventsource-parser": "^1.0.0",
"highlight.js": "^11.7.0",
"katex": "^0.16.4",
"lodash-es": "^4.17.21",
"markdown-it": "^13.0.1",
"markdown-it-highlightjs": "^4.0.1",
"markdown-it-kbd": "^2.2.2",
"medium-zoom": "^1.0.8",
"midjourney-fetch": "1.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"replicate-fetch": "^0.1.1",
"solid-js": "^1.6.15"
},
"devDependencies": {
"@esbuild/darwin-arm64": "^0.16.17",
"@tailwindcss/typography": "^0.5.9",
"@types/lodash-es": "^4.17.7",
"@types/node": "^18.15.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"astro-eslint-parser": "^0.12.0",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-astro": "^0.25.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"prettier-plugin-astro": "^0.8.0",
"punycode": "^2.3.0",
"simple-git-hooks": "^2.8.1",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5",
"vite-plugin-checker": "^0.5.6"
},
"lint-staged": {
"**/*.{ts,tsx,js,astro}": [
"eslint --fix --quiet",
"prettier --write"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
}
}