firefish/package.json

55 lines
2.1 KiB
JSON
Raw Normal View History

2016-12-28 22:49:51 +00:00
{
2023-07-15 21:21:17 +00:00
"name": "firefish",
2024-05-04 07:04:31 +00:00
"version": "20240504",
"repository": {
"type": "git",
2024-02-06 06:38:03 +00:00
"url": "https://firefish.dev/firefish/firefish.git"
},
2024-04-14 19:09:33 +00:00
"packageManager": "pnpm@8.15.7",
2017-11-06 10:16:14 +00:00
"private": true,
"scripts": {
2023-10-01 20:34:55 +00:00
"rebuild": "pnpm run clean && pnpm run build",
"build": "pnpm node ./scripts/build.mjs && pnpm run build:assets",
"build:assets": "pnpm node ./scripts/copy-assets.mjs",
"build:debug": "pnpm run clean && pnpm node ./scripts/dev-build.mjs && pnpm run build:assets",
"start": "pnpm --filter backend run start",
"start:container": "pnpm run build:assets && pnpm run migrate && pnpm run start",
"start:test": "pnpm --filter backend run start:test",
"init": "pnpm run migrate",
"migrate": "pnpm --filter backend run migration:run",
"revertmigration": "pnpm --filter backend run migration:revert",
"watch": "pnpm run dev",
"dev": "pnpm node ./scripts/dev.mjs",
"dev:staging": "NODE_OPTIONS=--max_old_space_size=3072 NODE_ENV=development pnpm run build && pnpm run start",
2024-04-11 21:55:39 +00:00
"lint": "pnpm run lint:ts; pnpm run lint:rs",
"lint:ts": "pnpm --filter !firefish-js -r --parallel run lint",
"lint:rs": "cargo clippy --fix --allow-dirty --allow-staged && cargo fmt --all --",
"debug": "pnpm run build:debug && pnpm run start",
"mocha": "pnpm --filter backend run mocha",
"test": "pnpm run test:ts && pnpm run test:rs",
"test:ts": "pnpm run mocha",
"test:rs": "cargo test",
2024-04-11 21:55:39 +00:00
"format": "pnpm run format:ts; pnpm run format:rs",
"format:ts": "pnpm -r --parallel run format",
"format:rs": "cargo fmt --all --",
"clean": "pnpm node ./scripts/clean-built.mjs",
"clean-npm": "pnpm node ./scripts/clean-npm.mjs",
"clean-cargo": "cargo clean",
"clean-all": "pnpm run clean && pnpm run clean-cargo && pnpm run clean-npm"
2017-11-06 10:16:14 +00:00
},
"dependencies": {
2024-04-14 19:09:33 +00:00
"js-yaml": "4.1.0"
},
"devDependencies": {
"@biomejs/biome": "1.7.1",
"@biomejs/cli-darwin-arm64": "^1.7.1",
"@biomejs/cli-darwin-x64": "^1.7.1",
"@biomejs/cli-linux-arm64": "^1.7.1",
"@biomejs/cli-linux-x64": "^1.7.1",
2024-04-11 17:55:27 +00:00
"@types/node": "20.12.7",
"execa": "8.0.1",
2024-04-14 19:09:33 +00:00
"pnpm": "8.15.7",
2024-04-11 17:55:27 +00:00
"typescript": "5.4.5"
2017-11-06 10:16:14 +00:00
}
2018-06-11 02:44:26 +00:00
}