temporeest
Version:
39 lines (38 loc) • 1.13 kB
JSON
{
"name": "@aphro/chinook",
"version": "0.3.6",
"main": "lib/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/tantaman/aphrodite.git",
"directory": "examples/chinook"
},
"dependencies": {
"@aphro/runtime-ts": "workspace:*"
},
"devDependencies": {
"@aphro/codegen-cli": "workspace:*",
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@databases/sqlite": "^4.0.1",
"@types/jest": "^28.1.8",
"@types/node": "^18.7.13",
"jest": "^29.0.1",
"typescript": "^4.8.2"
},
"scripts": {
"aphro": "aphro gen ./src/domain.aphro --dest ./src/domain",
"clean": "tsc --build --clean",
"build": "tsc --build",
"watch": "tsc --build -w",
"deep-clean": "rm -rf ./lib || true && rm tsconfig.tsbuildinfo || true",
"bootstrap": "rm ./db/chinook.sqlite || true && node scripts/bootstrap.js && cd ./db && cat Chinook_Sqlite.sql | sqlite3 chinook.sqlite",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.test.js"
]
}
}