-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 850 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 850 Bytes
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
{
"name": "web-clipboard",
"version": "1.0.0",
"description": "在线剪贴板网站,支持文字、图片、文件存储",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "node server/index.js",
"client": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"axios": "^1.3.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.18.0",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.0",
"sqlite3": "^5.1.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^3.1.0",
"concurrently": "^7.6.0",
"vite": "^4.5.14"
}
}