forked from gadgetmies/fomoplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.24 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
30
31
32
33
34
35
36
37
38
39
{
"name": "multi_store_player",
"version": "1.0.0",
"description": "",
"main": "ecosystem.config.js",
"engines": {
"node": "14.x"
},
"scripts": {
"migrate": "yarn workspace multi_store_player_back migrate",
"start:back": "yarn workspace multi_store_player_back start",
"start:front": "yarn workspace multi_store_player_front start",
"start:prod-front": "yarn workspace multi_store_player_front start:prod",
"start": "concurrently \"yarn run start:back\" \"yarn run start:front\"",
"start:prod": "concurrently \"yarn run start:back\" \"yarn run start:prod-front\"",
"ci:test": "yarn workspace multi_store_player_back ci:test",
"test": "yarn workspace multi_store_player_back test",
"build": "yarn workspace multi_store_player_front build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gadgetmies/multi_store_player.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gadgetmies/multi_store_player/issues"
},
"homepage": "https://github.com/gadgetmies/multi_store_player#readme",
"devDependencies": {
"concurrently": "^5.3.0",
"pm2": "^5.2.0",
"prettier": "^1.14.3"
},
"private": true,
"workspaces": [
"packages/**"
]
}