-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
78 lines (78 loc) · 2.65 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
76
77
78
{
"name": "aios.chat",
"private": true,
"version": "0.0.1",
"scripts": {
"inst": "npm i -g pnpm && pnpm i && cd ./api && pnpm i && cd ..",
"dev:env": "node entry.js && npm run dev",
"dev": "concurrently \"npm run dev:vite\" \"npm run dev:express\"",
"dev:vite": "vite",
"dev:express": "cross-env NODE_ENV=development nodemon --exec esno watch api/src/app.ts",
"build": "npm run build:vite && npm run build:express",
"build:vite": "tsc && vite build",
"build:express": "cross-env NODE_ENV=production tsup api/src/app.ts --out-dir dist/api --format cjs",
"preview": "vite preview",
"lint": "eslint --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --max-warnings 999"
},
"dependencies": {
"@andylacko/vite-svg-react-loader": "^3.0.3",
"@douyinfe/semi-icons": "^2.31.0",
"@douyinfe/semi-ui": "^2.25.0",
"@tailwindcss/typography": "^0.5.9",
"@vitejs/plugin-legacy": "^4.0.1",
"autoprefixer": "^10.4.13",
"axios": "^1.2.1",
"classnames": "^2.3.2",
"cross-env": "^7.0.3",
"html2canvas": "^1.4.1",
"less": "^4.1.3",
"lodash": "^4.17.21",
"papaparse": "^5.4.1",
"postcss": "^8.4.20",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.4.3",
"react-syntax-highlighter": "^15.5.0",
"rehype-katex": "^6.0.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"tailwindcss": "^3.2.4",
"terser": "^5.16.3",
"uuid": "^9.0.0",
"vite-plugin-pages": "^0.28.0",
"vite-plugin-pwa": "^0.14.7"
},
"devDependencies": {
"@types/classnames": "^2.3.1",
"@types/lodash": "^4.14.194",
"@types/node": "^18.11.10",
"@types/papaparse": "^5.3.7",
"@types/react": "^18.0.25",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.8",
"@types/react-router-dom": "^5.3.3",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitejs/plugin-react": "^3.1.0",
"concurrently": "^7.6.0",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"esno": "^0.16.3",
"nodemon": "^2.0.21",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vite": "^4.0.4"
}
}