-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 888 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "simply-tweeted-monorepo",
"version": "1.0.0",
"private": true,
"description": "Monorepo for the SimplyTweeted project",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently --names \"APP,SCHEDULER\" --prefix-colors \"blue,green\" \"npm run dev --workspace=simply-tweeted-app\" \"npm run dev --workspace=tweet-poster-service\"",
"build": "npm run build --workspace=shared-lib && npm run build --workspace=simply-tweeted-app && npm run build --workspace=tweet-poster-service",
"start": "concurrently --names \"APP,SCHEDULER\" --prefix-colors \"blue,green\" \"npm run preview --workspace=simply-tweeted-app\" \"npm run start --workspace=tweet-poster-service\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"keywords": [],
"author": "",
"license": "ISC"
}