1
0
Fork 0
toolkit/package.json

33 lines
1010 B
JSON
Raw Normal View History

{
"name": "root",
"private": true,
"scripts": {
"audit-all": "lerna run audit-moderate",
2019-04-20 15:07:55 +00:00
"bootstrap": "lerna bootstrap",
2019-04-20 15:00:36 +00:00
"build": "lerna run tsc",
2019-05-21 14:45:28 +00:00
"check-all": "concurrently \"npm:format-check\" \"npm:lint\" \"npm:test\" \"npm:build -- -- --noEmit\"",
"format": "prettier --write packages/**/*.ts",
"format-check": "prettier --check packages/**/*.ts",
2019-05-21 15:23:35 +00:00
"lint": "eslint packages/**/*.ts",
2021-06-04 13:25:13 +00:00
"lint-fix": "eslint packages/**/*.ts --fix",
2019-04-22 15:54:05 +00:00
"new-package": "scripts/create-package",
2020-01-07 06:14:32 +00:00
"test": "jest --testTimeout 10000"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^12.20.13",
"@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",
"flow-bin": "^0.115.0",
"jest": "^27.2.5",
"lerna": "^4.0.0",
"prettier": "^1.19.1",
"ts-jest": "^27.0.5",
"typescript": "^3.9.9"
}
}