Files
toolkit/package.json
T

32 lines
997 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": {
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",
2019-07-11 16:12:50 -04:00
"test": "jest",
"test-ci": "jest --testPathIgnorePatterns=\"<rootDir>/packages/exec/__tests__/exec.test.ts\""
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": "^11.13.5",
"@types/signale": "^1.2.1",
2019-05-21 10:34:23 -04:00
"@typescript-eslint/parser": "^1.9.0",
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",
2019-04-19 14:53:42 -04:00
"jest": "^24.7.1",
"jest-circus": "^24.7.1",
2019-04-19 15:15:34 -04:00
"lerna": "^3.13.3",
2019-04-19 15:35:44 -04:00
"prettier": "^1.17.0",
2019-04-19 15:15:34 -04:00
"ts-jest": "^24.0.2",
"typescript": "^3.4.4"
2019-04-19 14:29:24 -04:00
}
}