-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.78 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
{
"name": "project-omega",
"version": "0.0.1",
"repository": "https://github.com/mikey-t/project-omega.git",
"author": "Michael Thompson <mike@mikeyt.net>",
"license": "MIT",
"private": true,
"scripts": {
"installAll": "yarn install && yarn gulp initialInstall",
"client": "yarn gulp startClient",
"server": "yarn gulp startServer",
"both": "concurrently \"yarn run client\" \"yarn run server\" --kill-others",
"build": "yarn gulp build",
"bash:core": "yarn gulp dockerBash --image-name core",
"bash:web": "yarn gulp dockerBash --image-name web",
"bash:weather": "yarn gulp dockerBash --image-name weather",
"dockerBuild": "yarn gulp dockerBuild",
"dockerUp": "yarn gulp dockerUp",
"dockerDown": "yarn gulp dockerDown",
"dockerStop": "yarn gulp dockerStop",
"dockerRecreate": "yarn gulp dockerRecreate",
"dockerRecreateFull": "yarn gulp dockerRecreateFull",
"dockerRecreateServer": "yarn gulp dockerRecreateServer",
"dockerStandaloneBuild": "yarn gulp dockerStandaloneBuild",
"dockerStandaloneRun": "yarn gulp dockerStandaloneRun",
"dockerDepsUp": "yarn gulp dockerDepsUp",
"dockerDepsUpDetached": "yarn gulp dockerDepsUpDetached",
"dockerDepsDown": "yarn gulp dockerDepsDown",
"dockerDepsStop": "yarn gulp dockerDepsStop",
"dbMigrate": "yarn gulp dbMigrate",
"dbDropAll": "yarn gulp dbDropAll",
"testDbMigrate": "yarn gulp testDbMigrate",
"syncEnvFiles": "yarn gulp syncEnvFiles",
"deleteEnvFiles": "yarn gulp deleteEnvFiles",
"dotnetDevCerts": "dotnet dev-certs https --trust"
},
"devDependencies": {
"@mikeyt23/gulp-utils": "^1.1.2",
"@types/gulp": "^4.0.8",
"concurrently": "^6.0.0",
"gulp": "^4.0.2",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"yargs": "^16.2.0"
}
}