Files
toolkit/package.json
T

36 lines
1.1 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",
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",
"concurrently": "^6.1.0",
2023-08-03 16:36:11 -04:00
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-github": "^4.9.2",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
2020-01-10 16:37:48 -05:00
"flow-bin": "^0.115.0",
"jest": "^27.2.5",
2023-08-03 16:36:11 -04:00
"lerna": "^7.1.4",
"nx": "16.6.0",
"prettier": "^3.0.0",
"ts-jest": "^27.0.5",
2021-05-04 16:20:38 -04:00
"typescript": "^3.9.9"
2019-04-19 14:29:24 -04:00
}
2023-08-03 16:36:11 -04:00
}