forked from almdrasa/calorie-tracker-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 697 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 697 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
{
"name": "calorie-tracker-app",
"workspaces": [
"packages/*"
],
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"install-all": "lerna exec -- npm install",
"start:client": "lerna run --scope client start --stream",
"start:server": "lerna run --scope server start --stream",
"start": "concurrently --kill-others \"npm run start:server\" \"npm run start:client\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.2.0",
"lerna": "^8.2.2"
},
"dependencies": {
"@vitejs/plugin-react-swc": "^3.10.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"vite": "^6.3.5"
}
}