Files

41 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2019-04-19 14:29:24 -04:00
{
"name": "root",
"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",
"@types/node": "^20.5.7",
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-03-27 17:03:39 +00:00
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0"
2019-04-19 14:29:24 -04:00
}
2025-03-27 17:03:39 +00:00
}