forked from Charlotte21110/byteDanceLLM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.44 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.44 KB
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
{
"name": "llmchatbytedance",
"private": true,
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=18.16.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"prepare": "husky install",
"lint": "lint-staged",
"lint:fix": "eslint --fix",
"lint:ts": "eslint \"src/**/*.{ts,tsx}\" .eslintrc.js",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"ci": "pnpm lint && pnpm type-check && pnpm test && pnpm build",
"commitlint": "commitlint --edit",
"commit": "git-cz"
},
"homepage": "https://Charlotte21110.github.io/byteDanceLLM",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"src/**/*.{css,scss}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./cz-config.cjs"
}
},
"dependencies": {
"@ant-design/icons": "^5.6.0",
"@coze/api": "^1.0.12",
"antd": "^5.22.2",
"axios": "^1.7.8",
"commitizen": "^4.3.1",
"cz-customizable": "^7.4.0",
"cz-customizable-i18n-config": "^0.0.1-alpha.2",
"highlight.js": "^11.11.1",
"highlightjs-vue": "^1.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^6.0.3"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@eslint/js": "^9.13.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@vitejs/plugin-react": "^4.3.3",
"commitlint-plugin-i18n": "^0.0.1-alpha.3",
"eslint": "^9.13.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.11.0",
"husky": "^8.0.0",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.0",
"react-refresh": "^0.14.2",
"sass": "^1.81.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.11.0",
"vite": "^5.4.10",
"vitest": "^3.0.5"
}
}