-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.62 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
{
"name": "chatcat",
"version": "0.0.1",
"description": "",
"type": "module",
"scripts": {
"start": "npm run dev",
"dev": "tsx ./script/config.dev.ts",
"build": "tsx ./script/config.prod.ts",
"prepare": "husky install",
"lint": "eslint . && prettier -c src test",
"lint:fix": "eslint . --fix && prettier -c -w src test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/live-server": "^1.2.1",
"@types/node": "^18.16.10",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/webextension-polyfill": "^0.10.0",
"autoprefixer": "^10.4.14",
"consola": "^3.1.0",
"dotenv": "^16.0.3",
"esbuild": "^0.17.19",
"esbuild-style-plugin": "^1.6.2",
"eslint": "^8.40.0",
"eslint-config-unjs": "^0.1.0",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"live-server": "^1.2.2",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"tailwindcss": "^3.3.2",
"tsx": "^3.12.7",
"vitest": "^0.31.0"
},
"lint-staged": {
"**/*.{ts,tsx,js,tsx,mjs}": [
"npx eslint --fix",
"npx prettier --write"
],
"*.md": [
"npx prettier --write"
]
},
"dependencies": {
"ahooks": "^3.7.7",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"jotai": "^2.1.0",
"langchain": "^0.0.86",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-textarea-autosize": "^8.4.1",
"webextension-polyfill": "^0.10.0"
}
}