forked from shumancheng/Mini-Meco
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 1 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
{
"name": "mini-meco",
"version": "1.0.0",
"description": "A web app that provides agile tooling",
"scripts": {
"install-all": "npm install && npm install --prefix client && npm install --prefix server",
"build-all": "npm run build --prefix client && npm run build --prefix server",
"dev": "concurrently \"npm run dev --prefix client\" \"npm run dev --prefix server\"",
"start": "concurrently \"npm start --prefix client\" \"npm start --prefix server\"",
"test": "npm run test:client && npm run test:server"
},
"dependencies": {
"@octokit/rest": "^21.0.1",
"concurrently": "^8.0.1",
"octokit": "^4.0.2",
"react-chartjs-2": "^5.2.0",
"recharts": "^2.12.7"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@testing-library/react": "^16.0.1",
"@types/recharts": "^1.8.29",
"identity-obj-proxy": "^3.0.0",
"supertest": "^7.0.0"
}
}