package.json 376 B

12345678910111213141516171819
  1. {
  2. "name": "testing-infra",
  3. "version": "0.1.0",
  4. "main": "dist/runner.js",
  5. "scripts": {
  6. "build": "tsc",
  7. "start:dev": "ts-node index.ts",
  8. "start": "npm run build && node dist/runner.js"
  9. },
  10. "dependencies": {
  11. "jest-diff": "^30.1.2"
  12. },
  13. "devDependencies": {
  14. "@types/lodash": "^4.17.20",
  15. "lodash": "^4.17.21",
  16. "ts-node": "^10.9.1",
  17. "typescript": "^5.3.3"
  18. }
  19. }