-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 811 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 811 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
{
"name": "ai-projects-dashboard",
"version": "1.0.0",
"description": "看板工具,展示100个AI项目进展 - 配合一年100个AI产品挑战计划",
"main": "server/index.js",
"scripts": {
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"server:dev": "cd server && npm run dev",
"client:dev": "cd client && npm run dev",
"build": "cd client && npm run build",
"start": "cd server && npm start",
"install:all": "npm install && cd server && npm install && cd ../client && npm install"
},
"keywords": [
"ai",
"dashboard",
"kanban",
"vue",
"nodejs",
"projects"
],
"author": "AI产品挑战者",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
},
"dependencies": {
"axios": "^1.11.0"
}
}