This repository has been archived by the owner on Sep 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 2.19 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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "gymsystems",
"version": "2.0.2",
"author": "[email protected]",
"scripts": {
"snyk": "snyk",
"ng": "yarn workspace gymsystems_client ng",
"nest": "yarn workspace gymsystems_server nest",
"tsc": "yarn workspace gymsystems_server tsc",
"typeorm": "yarn workspace gymsystems_server typeorm",
"bump": "utils/bump.sh",
"build": "yarn build:server && yarn build:client",
"lint": "yarn workspace gymsystems_server lint && yarn workspace gymsystems_client lint",
"build:server": "yarn workspace gymsystems_server build",
"build:client": "yarn workspace gymsystems_client build",
"build:ssr": "yarn workspace gymsystems_client build:ssr",
"build:docker": "docker-compose -f orchestration/docker-compose.yaml -p docker build --compress",
"test": "yarn test:server && yarn test:client",
"test:server": "yarn workspace gymsystems_server test",
"test:client": "yarn workspace gymsystems_client test --watch=false",
"start": "yarn start:db && concurrently --kill-others --exitcrash -p \"[{name}]\" -n \"SERVER,CLIENT\" -c \"bgBlue.bold,bgGreen.bold\" \"yarn start:server\" \"yarn start:client\"",
"start:db": "docker-compose -f ./db/docker/docker-compose.yml -p docker up -d",
"start:server": "yarn build:server && yarn workspace gymsystems_server start:prod",
"start:client": "yarn workspace gymsystems_client start",
"start:ssr": "yarn workspace gymsystems_client start:ssr",
"start:docker": "docker-compose -f orchestration/docker-compose.yaml -p docker up -d",
"start:dockeri": "docker-compose -f orchestration/docker-compose.yaml -p docker up",
"stop:docker": "docker-compose -f orchestration/docker-compose.yaml -p docker down",
"stop:db": "docker-compose -f ./db/docker/docker-compose.yml rm -s -f",
"stress": "artillery run ./utils/artillery.yml",
"cloc": "npx cloc ./server/src && npx cloc ./client/src"
},
"private": true,
"repository": {
"type": "git"
},
"workspaces": {
"packages": [
"client",
"server"
]
},
"devDependencies": {
"artillery": "^1.6.0-28",
"concurrently": "^4.1.2",
"husky": "^3.0.5",
"snyk": "^1.226.1"
},
"snyk": true,
"resolutions": {}
}