-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2.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
{
"name": "chatgpt-vercel",
"version": "0.1.0",
"description": "Elegant and Powerful. Powered by OpenAI and Vercel",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"start": "HOST=0.0.0.0 node ./dist/server/entry.mjs",
"preview": "astro preview",
"astro": "astro",
"lint:fix": "eslint . --fix --ext .ts",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write ."
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"prettier --write",
"eslint --cache --fix",
"git add"
]
},
"dependencies": {
"@astrojs/cloudflare": "^6.2.1",
"@astrojs/netlify": "2.0.0",
"@astrojs/node": "^5.1.0",
"@astrojs/solid-js": "^2.1.0",
"@astrojs/vercel": "^3.2.1",
"@solid-primitives/event-listener": "^2.2.8",
"@solid-primitives/resize-observer": "^2.0.12",
"@unocss/reset": "^0.50.6",
"array-keyed-map": "^2.1.3",
"astro": "^2.1.3",
"eventsource-parser": "^0.1.0",
"express": "^4.18.2",
"fzf": "^0.5.1",
"highlight.js": "^11.7.0",
"html-to-image": "^1.11.11",
"just-throttle": "^4.2.0",
"katex": "^0.16.4",
"markdown-it": "^13.0.1",
"markdown-it-highlightjs": "^4.0.1",
"markdown-it-katex": "^2.0.3",
"markdown-it-kbd": "^2.2.2",
"solid-js": "^1.6.15"
},
"devDependencies": {
"@iconify-json/carbon": "^1.1.16",
"@iconify-json/ri": "^1.1.5",
"@types/markdown-it": "^12.2.3",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"@vercel/node": "^2.9.13",
"@vite-pwa/astro": "^0.0.5",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"punycode": "^2.3.0",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.0.2",
"unocss": "^0.50.6",
"vite-plugin-pwa": "^0.14.4",
"workbox-window": "^6.5.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">18.0.0"
}
}