hippofish/packages/backend/package.json
2023-05-16 13:30:39 -07:00

15 lines
496 B
JSON

{
"name": "backend",
"private": true,
"type": "module",
"scripts": {
"start": "cargo run --profile ${NODE_ENV:=development}",
"start:test": "NODE_ENV=test pnpm node ./built/index.js",
"check": "cargo check",
"migrate": "cargo run --bin migrate",
"build": "cargo build --profile ${NODE_ENV:=development}",
"revertmigration": "typeorm migration:revert -d ormconfig.js",
"lint": "cargo check",
"test": "CK_TEST_CONFIG=\"$(pwd)/../../.config/ci.yml\" cargo test --workspace"
}
}