Files
toolkit/package.json
T

33 lines
1.0 KiB
JSON
Raw 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-07-28 05:43:32 +00:00
"bootstrap": "npm install",
2019-04-20 11:00:36 -04:00
"build": "lerna run tsc",
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",
2020-01-07 01:14:32 -05:00
"test": "jest --testTimeout 10000"
2019-04-19 14:53:42 -04:00
},
2019-04-19 14:29:24 -04:00
"devDependencies": {
"@types/jest": "^27.0.2",
2022-12-14 01:13:46 +01:00
"@types/node": "^16.18.1",
"@types/signale": "^1.4.1",
2023-07-28 05:43:32 +00:00
"@typescript-eslint/eslint-plugin": "^6.0.0",
2023-07-28 04:13:36 +00:00
"@typescript-eslint/parser": "^6.0.0",
"concurrently": "^6.1.0",
2023-07-28 05:43:32 +00:00
"eslint": "^8.0.1",
"eslint-plugin-github": "^4.8.0",
2023-07-28 04:13:36 +00:00
"eslint-plugin-jest": "^27.2.3",
2020-01-10 16:37:48 -05:00
"flow-bin": "^0.115.0",
"jest": "^27.2.5",
2023-07-28 04:13:36 +00:00
"lerna": "^7.1.4",
2023-07-28 05:43:32 +00:00
"prettier": "^3.0.0",
"ts-jest": "^27.0.5",
2023-07-28 05:43:32 +00:00
"typescript": "^4.3.0"
2019-04-19 14:29:24 -04:00
}
2023-07-28 04:13:36 +00:00
}