Files

50 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2019-04-19 14:29:24 -04:00
{
"name": "root",
2025-07-31 23:37:22 +01:00
"private": true,
2019-04-19 14:53:42 -04:00
"scripts": {
"audit-all": "lerna run audit-moderate",
2023-08-03 16:36:11 -04:00
"bootstrap": "lerna exec -- npm install",
2019-04-20 11:00:36 -04:00
"build": "lerna run tsc",
2023-08-03 16:36:11 -04:00
"clean": "lerna clean",
"repair": "lerna repair",
2019-05-21 10:45:28 -04:00
"check-all": "concurrently \"npm:format-check\" \"npm:lint\" \"npm:test\" \"npm:build -- -- --noEmit\"",
2019-05-21 10:18:33 -04:00
"format": "prettier --write packages/**/*.ts",
"format-check": "prettier --check packages/**/*.ts",
2019-05-21 11:23:35 -04:00
"lint": "eslint packages/**/*.ts",
2021-06-04 09:25:13 -04:00
"lint-fix": "eslint packages/**/*.ts --fix",
2019-04-22 11:54:05 -04:00
"new-package": "scripts/create-package",
2024-04-15 15:24:57 +00:00
"test": "jest --testTimeout 70000"
2019-04-19 14:53:42 -04:00
},
2019-04-19 14:29:24 -04:00
"devDependencies": {
2023-09-08 14:29:27 +00:00
"@types/jest": "^29.5.4",
2025-07-31 23:37:22 +01:00
"@types/node": "^24.1.0",
2023-09-14 14:32:08 +00:00
"@types/signale": "^1.4.1",
"concurrently": "^6.1.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-github": "^4.9.2",
2023-08-03 16:36:11 -04:00
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
2023-09-14 14:32:08 +00:00
"flow-bin": "^0.115.0",
2023-09-08 14:29:27 +00:00
"jest": "^29.6.4",
"lerna": "^6.4.1",
2023-09-14 14:32:08 +00:00
"nx": "16.6.0",
"prettier": "^3.0.0",
2023-09-08 14:29:27 +00:00
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
2025-09-04 12:49:31 +01:00
},
"overrides": {
"semver": "^7.6.0",
"tar": "^6.2.1",
2025-09-04 12:58:54 +01:00
"@octokit/plugin-paginate-rest": "^9.2.2",
"@octokit/request": "^8.4.1",
"@octokit/request-error": "^5.1.1",
"@octokit/core": "^5.0.3",
2025-09-04 14:16:27 +01:00
"tmp": "^0.2.4",
2025-09-08 15:37:51 +01:00
"@types/node": "^24.1.0",
"brace-expansion": "^2.0.2",
2025-09-25 13:03:33 +01:00
"form-data": "^4.0.4",
2025-10-13 18:00:34 +01:00
"uri-js": "npm:uri-js-replace@^1.0.1",
"node-fetch": "^3.3.2"
2019-04-19 14:29:24 -04:00
}
2024-04-15 15:24:57 +00:00
}