|
16 | 16 | "start-bot-dev-debug": "DEBUG=true clinic heapprofiler --collect-only --dest .clinic-bot -- node --enable-source-maps --stack-trace-limit=30 --inspect=0.0.0.0:9229 dist/index.js", |
17 | 17 | "start-bot-prod": "node --enable-source-maps --stack-trace-limit=30 dist/index.js", |
18 | 18 | "start-bot-prod-debug": "DEBUG=true clinic heapprofiler --collect-only --dest .clinic-bot -- node --enable-source-maps --stack-trace-limit=30 dist/index.js", |
19 | | - "watch-bot": "tsc-watch --build --onSuccess \"npm run start-bot-dev\"", |
| 19 | + "watch-bot": "tsc-watch --build --onSuccess \"pnpm run start-bot-dev\"", |
20 | 20 | "start-api-dev": "node --enable-source-maps --stack-trace-limit=30 --inspect=0.0.0.0:9239 dist/api/index.js", |
21 | 21 | "start-api-dev-debug": "DEBUG=true clinic heapprofiler --collect-only --dest .clinic-api -- node --enable-source-maps --stack-trace-limit=30 --inspect=0.0.0.0:9239 dist/api/index.js", |
22 | 22 | "start-api-prod": "node --enable-source-maps --stack-trace-limit=30 dist/api/index.js", |
23 | 23 | "start-api-prod-debug": "clinic heapprofiler --collect-only --dest .clinic-api -- node --enable-source-maps --stack-trace-limit=30 dist/api/index.js", |
24 | | - "watch-api": "tsc-watch --build --onSuccess \"npm run start-api-dev\"", |
| 24 | + "watch-api": "tsc-watch --build --onSuccess \"pnpm run start-api-dev\"", |
25 | 25 | "typeorm": "node ../node_modules/typeorm/cli.js", |
26 | | - "migrate": "npm run typeorm -- migration:run -d dist/data/dataSource.js", |
27 | | - "migrate-prod": "npm run migrate", |
28 | | - "migrate-dev": "npm run build && npm run migrate", |
29 | | - "migrate-rollback": "npm run typeorm -- migration:revert -d dist/data/dataSource.js", |
30 | | - "migrate-rollback-prod": "npm run migrate-rollback", |
31 | | - "migrate-rollback-dev": "npm run build && npm run migrate-rollback", |
| 26 | + "migrate": "pnpm run typeorm -- migration:run -d dist/data/dataSource.js", |
| 27 | + "migrate-prod": "pnpm run migrate", |
| 28 | + "migrate-dev": "pnpm run build && pnpm run migrate", |
| 29 | + "migrate-rollback": "pnpm run typeorm -- migration:revert -d dist/data/dataSource.js", |
| 30 | + "migrate-rollback-prod": "pnpm run migrate-rollback", |
| 31 | + "migrate-rollback-dev": "pnpm run build && pnpm run migrate-rollback", |
32 | 32 | "validate-active-configs": "node --enable-source-maps dist/validateActiveConfigs.js > ../config-errors.txt", |
33 | 33 | "export-config-json-schema": "node --enable-source-maps dist/exportSchemas.js ../config-checker/public/config-schema.json", |
34 | | - "test": "npm run build && npm run run-tests", |
| 34 | + "test": "pnpm run build && pnpm run run-tests", |
35 | 35 | "run-tests": "ava", |
36 | | - "test-watch": "tsc-watch --build --onSuccess \"npx ava\"" |
| 36 | + "test-watch": "tsc-watch --build --onSuccess \"pnpm exec ava\"" |
37 | 37 | }, |
38 | 38 | "dependencies": { |
39 | 39 | "@silvia-odwyer/photon-node": "^0.3.1", |
|
0 commit comments