|
12 | 12 | "prestart": "run-p setup clean db:dev",
|
13 | 13 | "clean": "rimraf coverage build tmp src/**/*.js src/**/*.js.map test/**/*.js test/**/*.js.map",
|
14 | 14 | "init": "run-p db",
|
15 |
| - "start": "run-p start:main start:worker", |
| 15 | + "start": "run-p spa:dev start:main start:worker", |
16 | 16 | "start:main": "tsnd -r tsconfig-paths/register --watch=.env*,db/config.json --inspect=0.0.0.0:9229 --respawn --transpile-only -- src/main.ts",
|
17 | 17 | "start:worker": "tsnd -r tsconfig-paths/register --watch=.env*,db/config.json --inspect=0.0.0.0:9230 --respawn --transpile-only -- src/worker.ts",
|
18 | 18 | "start:production": "run-p start:main:production start:worker:production",
|
19 | 19 | "start:main:production": "node -r tsconfig-paths/register src/main",
|
20 | 20 | "start:worker:production": "node -r tsconfig-paths/register src/worker",
|
21 | 21 | "setup": "dotenv -- ts-node -r tsconfig-paths/register prestart.ts",
|
22 |
| - "build": "tsc -p ./tsconfig.json", |
23 |
| - "build:release": "tsc -p ./tsconfig.release.json", |
24 |
| - "build:watch": "tsc -w -p ./tsconfig.json", |
| 22 | + "build": "tsc -p ./tsconfig.json && yarn spa:build", |
| 23 | + "build:release": "tsc -p ./tsconfig.release.json && yarn spa:build", |
| 24 | + "build:watch": "tsc -w -p ./tsconfig.json && yarn spa:build", |
25 | 25 | "lint": "run-p lint:*",
|
26 | 26 | "lint:ts": "eslint . --ext .ts,.tsx",
|
27 | 27 | "lint:yaml": "yamllint github-for-jira.sd.yml",
|
|
48 | 48 | "test:e2e:start:headed": "yarn test:e2e:start --headed",
|
49 | 49 | "test:e2e:debug": "PWDEBUG=1 yarn test:e2e:headed",
|
50 | 50 | "test:e2e:watch": "nodemon --watch test/e2e -e ts --exec 'yarn test:e2e'",
|
51 |
| - "test:e2e:watch:headed": "nodemon --watch test/e2e -e ts --exec 'yarn test:e2e:headed'" |
| 51 | + "test:e2e:watch:headed": "nodemon --watch test/e2e -e ts --exec 'yarn test:e2e:headed'", |
| 52 | + "spa:dev": "cd spa && yarn dev", |
| 53 | + "spa:build": "etc/spa-build/spa-build.sh" |
52 | 54 | },
|
53 | 55 | "dependencies": {
|
54 | 56 | "@atlaskit/css-reset": "^2.0.5",
|
|
77 | 79 | "hbs": "^4.1.2",
|
78 | 80 | "helmet": "^3.21.2",
|
79 | 81 | "hot-shots": "^8.3.2",
|
| 82 | + "http-proxy": "^1.18.1", |
80 | 83 | "https-proxy-agent": "5.0.0",
|
81 | 84 | "ioredis": "^4.16.3",
|
82 | 85 | "is-base64": "^1.1.0",
|
|
0 commit comments