|
10 | 10 | "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", |
11 | 11 | "start": "node dist/src/main.js", |
12 | 12 | "start:dev": "nest start --watch", |
13 | | - "start:debug": "cross-env NODE_ENV=debug nest start --debug --watch", |
14 | 13 | "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", |
15 | | - "test:unit": "cross-env NODE_ENV=test jest --config test/jest-unit.json", |
16 | | - "test:unit:cov": "cross-env NODE_ENV=test jest --config test/jest-unit.json --coverage", |
17 | | - "test:e2e": "cross-env NODE_ENV=test jest --config test/jest-e2e.json", |
| 14 | + "test:unit": "cross-env NODE_ENV=TEST jest --config test/jest-unit.json", |
| 15 | + "test:unit:cov": "cross-env NODE_ENV=TEST jest --config test/jest-unit.json --coverage", |
| 16 | + "test:e2e": "cross-env NODE_ENV=TEST jest --config test/jest-e2e.json", |
18 | 17 | "test:e2e:debug": "cross-env NODE_ENV=debug jest --config test/jest-e2e.json", |
19 | | - "test:e2e:cov": "cross-env NODE_ENV=test jest --config test/jest-e2e.json --coverage", |
20 | | - "test": "cross-env NODE_ENV=test jest --config test/jest-integration.json", |
21 | | - "test:watch": "cross-env NODE_ENV=test jest --config test/jest-integration.json --watch", |
22 | | - "test:cov": "cross-env NODE_ENV=test jest --config test/jest-integration.json --coverage" |
| 18 | + "test:e2e:cov": "cross-env NODE_ENV=TEST jest --config test/jest-e2e.json --coverage", |
| 19 | + "test": "cross-env NODE_ENV=TEST jest --config test/jest-integration.json", |
| 20 | + "test:watch": "cross-env NODE_ENV=TEST jest --config test/jest-integration.json --watch", |
| 21 | + "test:cov": "cross-env NODE_ENV=TEST jest --config test/jest-integration.json --coverage", |
| 22 | + "typeorm": "typeorm-ts-node-commonjs", |
| 23 | + "migration:create": "cross-env NODE_ENV=PROD npm run typeorm -- migration:create", |
| 24 | + "prod:migration:generate": "cross-env NODE_ENV=PROD npm run typeorm -- migration:generate -d dataSource.ts", |
| 25 | + "local:migration:generate": "cross-env NODE_ENV=LOCAL npm run typeorm -- migration:generate -d dataSource.ts" |
23 | 26 | }, |
24 | 27 | "dependencies": { |
25 | 28 | "@anthropic-ai/sdk": "^0.36.3", |
|
0 commit comments