-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.26 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.26 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
{
"name": "chat-ta",
"private": false,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "tauri dev",
"build": "tauri build",
"new-component": "tsx scripts/new-component.ts"
},
"dependencies": {
"@ant-design/cssinjs": "^1.9.1",
"@tauri-apps/api": "^1.3.0",
"ahooks": "^3.7.7",
"antd": "^5.4.7",
"classnames": "^2.3.2",
"highlight.js": "^11.8.0",
"lodash-es": "^4.17.21",
"marked": "^5.0.1",
"marked-gfm-heading-id": "^3.0.1",
"marked-highlight": "^1.0.1",
"marked-mangle": "^1.0.1",
"nanoid": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.1"
},
"devDependencies": {
"@tauri-apps/cli": "^1.3.0",
"@types/lodash-es": "^4.17.7",
"@types/marked": "^4.3.0",
"@types/node": "^18.7.10",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.23",
"prettier-plugin-tailwindcss": "^0.2.8",
"tailwindcss": "^3.3.2",
"tsx": "^3.12.7",
"typescript": "^4.9.5",
"vite": "^4.2.1"
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
],
"semi": false,
"singleQuote": true,
"printWidth": 100
}
}