hippofish/package.json

55 lines
2.3 KiB
JSON
Raw Normal View History

2016-12-28 23:49:51 +01:00
{
2023-07-15 23:21:17 +02:00
"name": "firefish",
2024-06-29 17:00:19 +02:00
"version": "20240630",
"repository": {
"type": "git",
2024-02-06 07:38:03 +01:00
"url": "https://firefish.dev/firefish/firefish.git"
},
2024-06-17 22:05:45 +02:00
"packageManager": "pnpm@9.4.0",
2017-11-06 11:16:14 +01:00
"private": true,
"scripts": {
2023-10-01 22:34:55 +02:00
"rebuild": "pnpm run clean && pnpm run build",
2024-05-09 19:24:25 +02:00
"build": "pnpm --recursive --color run build && pnpm node ./scripts/copy-index.mjs && pnpm run build:assets",
"build:assets": "pnpm node ./scripts/copy-assets.mjs",
2024-05-09 19:24:25 +02:00
"build:debug": "pnpm run clean && pnpm --recursive --color run build:debug && pnpm node ./scripts/copy-index-dev.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 23:55:39 +02:00
"lint": "pnpm run lint:ts; pnpm run lint:rs",
2024-06-28 23:59:07 +02:00
"lint:ts": "pnpm --filter !firefish-js --recursive run lint ; pnpm run format:ts",
2024-04-11 23:55:39 +02:00
"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",
2024-06-12 22:28:51 +02:00
"test": "pnpm run test:rs && pnpm run test:rs:miri && pnpm run test:ts",
"test:ts": "pnpm run mocha",
"test:rs": "cargo test --doc && cargo nextest run",
2024-06-12 22:28:51 +02:00
"test:rs:miri": "MIRIFLAGS='-Zmiri-disable-isolation' cargo +nightly miri nextest run -j$(nproc --all)",
2024-04-11 23:55:39 +02: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 11:16:14 +01:00
},
"dependencies": {
2024-04-14 21:09:33 +02:00
"js-yaml": "4.1.0"
},
"devDependencies": {
2024-06-27 22:05:39 +02:00
"@biomejs/biome": "1.8.3",
"@biomejs/cli-darwin-arm64": "1.8.3",
"@biomejs/cli-darwin-x64": "1.8.3",
"@biomejs/cli-linux-arm64": "1.8.3",
"@biomejs/cli-linux-x64": "1.8.3",
"@types/node": "20.14.9",
"execa": "9.3.0",
2024-06-27 23:23:22 +02:00
"pnpm": "9.4.0"
2017-11-06 11:16:14 +01:00
}
2018-06-11 04:44:26 +02:00
}