firefish/package.json

59 lines
2.1 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-04-24 08:42:23 +02:00
"version": "20240424",
"repository": {
"type": "git",
2024-02-06 07:38:03 +01:00
"url": "https://firefish.dev/firefish/firefish.git"
},
2024-04-14 21:09:33 +02:00
"packageManager": "pnpm@8.15.7",
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",
"build": "pnpm node ./scripts/build.mjs && pnpm run gulp",
"start": "pnpm --filter backend run start",
"start:container": "pnpm run gulp && 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",
2021-11-12 02:24:19 +01:00
"gulp": "gulp build",
"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",
"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",
"build:debug": "pnpm run clean && pnpm node ./scripts/dev-build.mjs && pnpm run gulp",
"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 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-07 11:55:29 +02:00
"gulp": "4.0.2",
"gulp-cssnano": "2.1.3",
"gulp-replace": "1.1.4",
2024-04-14 21:09:33 +02:00
"gulp-terser": "2.1.0",
"js-yaml": "4.1.0"
},
"devDependencies": {
2024-04-07 09:42:25 +02:00
"@biomejs/biome": "1.6.4",
"@biomejs/cli-darwin-arm64": "^1.6.4",
"@biomejs/cli-darwin-x64": "^1.6.4",
"@biomejs/cli-linux-arm64": "^1.6.4",
"@biomejs/cli-linux-x64": "^1.6.4",
2024-04-11 19:55:27 +02:00
"@types/node": "20.12.7",
"execa": "8.0.1",
2024-04-14 21:09:33 +02:00
"pnpm": "8.15.7",
2024-04-11 19:55:27 +02:00
"typescript": "5.4.5"
2017-11-06 11:16:14 +01:00
}
2018-06-11 04:44:26 +02:00
}