2023-01-31 17:55:57 +03:00
|
|
|
{
|
2024-06-27 17:37:54 +03:00
|
|
|
"name": "root",
|
2024-03-15 02:03:55 +03:00
|
|
|
"private": true,
|
2024-06-27 17:44:12 +03:00
|
|
|
"repository": "https://github.com/gitbutlerapp/gitbutler.git",
|
2024-06-06 17:03:13 +03:00
|
|
|
"engines": {
|
2024-06-07 15:56:37 +03:00
|
|
|
"node": ">=20.11"
|
2024-06-06 17:03:13 +03:00
|
|
|
},
|
2024-07-01 19:47:43 +03:00
|
|
|
"type": "module",
|
2024-07-17 11:48:51 +03:00
|
|
|
"packageManager": "pnpm@9.5.0",
|
2024-03-15 02:03:55 +03:00
|
|
|
"scripts": {
|
2024-07-27 14:29:32 +03:00
|
|
|
"dev:ui": "pnpm --filter @gitbutler/ui storybook",
|
2024-10-18 15:36:42 +03:00
|
|
|
"dev:web": "turbo watch --filter @gitbutler/web dev",
|
2024-07-25 18:53:28 +03:00
|
|
|
"dev:desktop": "pnpm tauri dev",
|
2024-07-29 13:36:03 +03:00
|
|
|
"dev:internal-tauri": "turbo watch --filter @gitbutler/desktop dev",
|
2024-10-11 16:02:17 +03:00
|
|
|
"package": "turbo run package",
|
2024-07-27 14:29:32 +03:00
|
|
|
"test": "turbo run test --no-daemon",
|
|
|
|
"test:watch": "pnpm --filter @gitbutler/desktop run test:watch",
|
2024-10-26 15:51:30 +03:00
|
|
|
"test:e2e:web": "turbo run test:e2e:web",
|
2024-08-02 15:17:32 +03:00
|
|
|
"test:e2e": "pnpm --filter @gitbutler/desktop run test:e2e",
|
2024-08-06 17:15:03 +03:00
|
|
|
"act:test:e2e": "act -j test -W .github/workflows/test-e2e.yml -P catthehacker/ubuntu:act-22.04",
|
2024-07-02 18:25:14 +03:00
|
|
|
"build": "turbo run build --no-daemon",
|
2024-07-29 11:49:22 +03:00
|
|
|
"build:desktop": "turbo run --filter @gitbutler/desktop build --no-daemon",
|
2024-09-01 01:14:28 +03:00
|
|
|
"build:test": "pnpm exec tauri build --config crates/gitbutler-tauri/tauri.conf.test.json -- --profile dev",
|
2024-07-02 18:25:14 +03:00
|
|
|
"check": "turbo run check --no-daemon",
|
2024-03-15 02:03:55 +03:00
|
|
|
"tauri": "tauri",
|
2024-07-02 18:25:14 +03:00
|
|
|
"lint": "turbo run //#globallint --no-daemon",
|
2024-07-02 16:18:37 +03:00
|
|
|
"globallint": "prettier --check . && eslint .",
|
2024-06-28 12:34:54 +03:00
|
|
|
"format": "prettier --write .",
|
|
|
|
"fix": "eslint --fix .",
|
2024-07-27 14:29:32 +03:00
|
|
|
"prepare": "pnpm --filter @gitbutler/desktop run prepare",
|
2024-03-30 21:41:45 +03:00
|
|
|
"rustfmt": "cargo +nightly fmt -- --config-path rustfmt-nightly.toml"
|
2024-03-15 02:03:55 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-06-28 12:34:54 +03:00
|
|
|
"@eslint/js": "^9.5.0",
|
2024-10-21 12:50:25 +03:00
|
|
|
"@types/eslint": "9.6.0",
|
2024-10-07 17:23:05 +03:00
|
|
|
"@tauri-apps/cli": "^2.0.1",
|
2024-06-28 12:34:54 +03:00
|
|
|
"@types/eslint__js": "^8.42.3",
|
2024-08-16 18:58:30 +03:00
|
|
|
"@types/node": "^22.3.0",
|
2024-06-28 12:34:54 +03:00
|
|
|
"@typescript-eslint/parser": "^7.13.1",
|
2024-10-21 12:50:25 +03:00
|
|
|
"eslint": "^9.13.0",
|
2024-06-28 12:34:54 +03:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
|
|
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
|
|
"eslint-plugin-import-x": "^0.5.1",
|
2024-09-10 17:20:14 +03:00
|
|
|
"eslint-plugin-storybook": "0.9.0--canary.156.ed236ca.0",
|
2024-10-21 12:50:25 +03:00
|
|
|
"eslint-plugin-svelte": "2.46.0",
|
2024-06-28 12:57:16 +03:00
|
|
|
"globals": "^15.6.0",
|
2024-06-28 12:34:54 +03:00
|
|
|
"prettier": "^3.3.2",
|
2024-10-02 11:51:15 +03:00
|
|
|
"prettier-plugin-svelte": "^3.2.7",
|
|
|
|
"svelte-eslint-parser": "^0.41.1",
|
2024-10-28 13:25:14 +03:00
|
|
|
"turbo": "2.1.1",
|
2024-06-28 12:34:54 +03:00
|
|
|
"typescript": "5.4.5",
|
2024-10-21 12:50:25 +03:00
|
|
|
"typescript-eslint": "^8.10.0"
|
2024-06-18 13:16:02 +03:00
|
|
|
}
|
2023-01-31 17:55:57 +03:00
|
|
|
}
|