Files

33 lines
992 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",
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": {
2019-04-19 15:15:34 -04:00
"@types/jest": "^24.0.11",
"@types/node": "^12.12.47",
"@types/signale": "^1.2.1",
2020-04-13 10:19:49 -04:00
"@typescript-eslint/parser": "^2.2.7",
2019-05-21 10:43:05 -04:00
"concurrently": "^4.1.0",
2019-05-21 10:34:23 -04:00
"eslint": "^5.16.0",
"eslint-plugin-github": "^2.0.0",
"eslint-plugin-jest": "^22.5.1",
2020-01-10 16:37:48 -05:00
"flow-bin": "^0.115.0",
2020-03-09 14:17:29 -04:00
"jest": "^25.1.0",
2019-04-19 14:53:42 -04:00
"jest-circus": "^24.7.1",
"lerna": "^3.18.4",
2019-12-27 19:42:30 -05:00
"prettier": "^1.19.1",
2020-04-27 17:17:31 +02:00
"ts-jest": "^25.4.0",
2019-12-27 19:42:30 -05:00
"typescript": "^3.7.4"
2019-04-19 14:29:24 -04:00
}
}