forked from Sam-Jeston/express-react-ts-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 1.33 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
{
"name": "express-react-ts-auth",
"version": "1.0.0",
"description": "Umbrella",
"main": "index.js",
"scripts": {
"start-local": "concurrently --prefix \"[{name}]\" --names \"SERVER,SERVER_WATCH,CLIENT\" -c \"bgBlue.bold,bgMagenta.bold,bgGreen.bold\" \"cd server && npm start\" \"cd server && npm run watch\" \"cd client && npm start\"",
"watch": "concurrently --prefix \"[{name}]\" --names \"SERVER,SERVER_WATCH,CLIENT\" -c \"bgBlue.bold,bgMagenta.bold,bgGreen.bold\" \"cd server && npm start\" \"cd server && npm run watch\" \"cd client && npm start\"",
"start": "cd server && npm run compile && cd .. && docker-compose up -d && concurrently --prefix \"[{name}]\" --names \"DOCKER,CLIENT_WATCH\" -c \"bgBlue.bold,bgMagenta.bold\" \"docker-compose logs -f\" \"cd client && npm start\"",
"kill": "docker-compose kill && docker-compose rm",
"prod": "cd server && npm start",
"install-all": "npm i && cd client && npm i && cd ../server && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sam-Jeston/express-react-ts-auth.git"
},
"author": "Sam Jeston",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sam-Jeston/express-react-ts-auth/issues"
},
"homepage": "https://github.com/Sam-Jeston/express-react-ts-auth#readme",
"dependencies": {
"concurrently": "^3.5.0"
}
}