forked from john-smilga/monorepo-typescript-vite-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
21 lines (21 loc) · 844 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "monoscript",
"version": "1.0.0",
"description": "Monorepo with Typescript, Express, Vite, Tailwind, Shadcn",
"main": "index.js",
"scripts": {
"install": "npm install && cd shared && npm install && cd ../client && npm install && cd ../server && npm install",
"build:shared": "cd shared && npm install && npm run build",
"build:client": "cd client && npm install && npm run build",
"build:server": "cd server && npm install && npm run build",
"deploy": "npm run build:shared && npm run build:client && npm run build:server",
"start": "cd server && npm run start",
"dev": "concurrently \"npm run dev --prefix shared\" \"npm run dev --prefix server\" \"npm run dev --prefix client\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^9.0.1"
}
}