|
10 | 10 | "build": "nest build",
|
11 | 11 | "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
12 | 12 | "start": "nest start",
|
13 |
| - "start:dev": "STAGE=dev nest start --watch", |
14 |
| - "start:debug": "STAGE=dev nest start --debug --watch", |
15 |
| - "start:prod": "STAGE=prod node dist/main", |
| 13 | + "start:dev": "cross-env STAGE=dev nest start --watch", |
| 14 | + "start:debug": "cross-env STAGE=dev nest start --debug --watch", |
| 15 | + "start:prod": "cross-env STAGE=prod node dist/main", |
16 | 16 | "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
17 |
| - "test": "STAGE=dev jest --runInBand", |
18 |
| - "test:watch": "STAGE=dev jest --runInBand --watch", |
19 |
| - "test:cov": "STAGE=dev jest --runInBand --coverage", |
| 17 | + "test": "cross-env STAGE=dev jest --runInBand", |
| 18 | + "test:watch": "cross-env STAGE=dev jest --runInBand --watch", |
| 19 | + "test:cov": "cross-env STAGE=dev jest --runInBand --coverage", |
20 | 20 | "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
21 | 21 | "test:e2e": "jest --config ./test/jest-e2e.json",
|
22 | 22 | "docker-compose:dev": "docker-compose up --build",
|
|
33 | 33 | "@nestjs/platform-express": "^8.0.0",
|
34 | 34 | "@nestjs/typeorm": "^8.0.3",
|
35 | 35 | "@types/node": "^17.0.31",
|
| 36 | + "cross-env": "^7.0.3", |
36 | 37 | "joi": "^17.6.0",
|
37 | 38 | "pg": "^8.7.3",
|
38 | 39 | "reflect-metadata": "^0.1.13",
|
|
0 commit comments