-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.7 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
{
"name": "devpilot-h5",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc && vite build",
"build:vscode": "pnpm run build && cp dist/ext.html ../devpilot-vscode/dist/index.html",
"build:web": "rimraf dist && tsc && vite build --config ./config/vite.config.ts",
"dev": "vite",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"axios": "^1.6.5",
"dayjs": "^1.11.10",
"parse-numeric-range": "^1.3.0",
"react": "^18.2.0",
"react-contexify": "^6.0.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-markdown": "^8.0.5",
"react-router-dom": "^6.21.3",
"react-syntax-highlighter": "^15.5.0",
"react-textarea-autosize": "^8.5.3",
"react-tooltip": "^5.26.3",
"rehype-raw": "^6",
"styled-components": "^6.1.6",
"unist-util-visit": "^5.0.0",
"vconsole": "^3.15.1"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/react-syntax-highlighter": "^15.5.11",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"less": "^4.2.0",
"prettier": "^2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-packagejson": "^2.4.3",
"rimraf": "^5.0.5",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-singlefile": "^0.13.5"
}
}