toolkit/package.json

31 lines
898 B
JSON
Raw Permalink Normal View History

{
"name": "root",
"private": true,
"scripts": {
2019-04-20 23:07:55 +08:00
"bootstrap": "lerna bootstrap",
2019-04-20 23:00:36 +08:00
"build": "lerna run tsc",
2019-05-21 22:45:28 +08: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 23:23:35 +08:00
"lint": "eslint packages/**/*.ts",
2019-04-22 23:54:05 +08:00
"new-package": "scripts/create-package",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.13.5",
"@types/signale": "^1.2.1",
2019-05-21 22:34:23 +08:00
"@typescript-eslint/parser": "^1.9.0",
2019-05-21 22:43:05 +08:00
"concurrently": "^4.1.0",
2019-05-21 22:34:23 +08:00
"eslint": "^5.16.0",
"eslint-plugin-github": "^2.0.0",
"eslint-plugin-jest": "^22.5.1",
"jest": "^24.7.1",
"jest-circus": "^24.7.1",
"lerna": "^3.13.3",
2019-04-20 03:35:44 +08:00
"prettier": "^1.17.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.4"
}
}