UNPKG

temporeest

Version:
43 lines (42 loc) 1.3 kB
{ "name": "@aphro/integration-tests-node", "private": true, "version": "0.4.3", "main": "lib/index.js", "type": "module", "repository": { "type": "git", "url": "https://github.com/tantaman/aphrodite.git", "directory": "integration-tests/node" }, "dependencies": { "@aphro/runtime-ts": "workspace:*", "@aphro/sqlite3-connector": "workspace:*", "@aphro/integration-tests-shared": "workspace:*", "@strut/utils": "^0.1.1" }, "devDependencies": { "@aphro/codegen-cli": "workspace:*", "@babel/core": "^7.18.13", "@babel/preset-env": "^7.18.10", "@jest/globals": "^29.0.1", "@types/jest": "^28.1.8", "@types/node": "^18.7.13", "jest": "^29.0.1", "typescript": "^4.8.2" }, "scripts": { "clean": "tsc --build --clean", "build": "tsc --build", "watch": "tsc --build -w", "test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js", "aphro": "aphro gen src/schema/domain.aphro -d src/domain && aphro gen src/schema/in-memory.aphro -d src/domain-memory && pnpm copy", "copy": "cp src/domain/generated/*.sql lib/domain/generated", "deep-clean": "rm -rf ./lib || true && rm tsconfig.tsbuildinfo || true" }, "jest": { "testMatch": [ "**/__tests__/**/*.test.js" ] } }