Files

32 lines
1008 B
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",
2019-04-20 11:07:55 -04:00
"bootstrap": "lerna bootstrap",
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",
"@typescript-eslint/parser": "^4.0.0",
"concurrently": "^6.1.0",
"eslint": "^7.23.0",
"eslint-plugin-github": "^4.1.3",
"eslint-plugin-jest": "^22.21.0",
2020-01-10 16:37:48 -05:00
"flow-bin": "^0.115.0",
"jest": "^27.2.5",
2022-12-08 05:04:00 +00:00
"lerna": "^5.4.0",
2019-12-27 19:42:30 -05:00
"prettier": "^1.19.1",
"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
}
2022-12-08 05:04:00 +00:00
}