-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "tarnhelm",
"private": true,
"repository": "git@github.com:bkiac/tarnhelm.git",
"author": "Ben Knáb <benknab@pm.me>",
"scripts": {
"build": "lerna run build --no-bail",
"checks": "run-p --continue-on-error --aggregate-output type lint format:check",
"fix": "run-s lint:fix format",
"format": "yarn format:prettier --write",
"format:check": "yarn format:prettier --check",
"format:prettier": "prettier \"./**/*.{ts,tsx,js,jsx,json,css,md,yml,yaml}\"",
"lint": "eslint --ext js,ts,tsx .",
"lint:fix": "yarn lint --fix",
"postinstall": "lerna bootstrap",
"test": "lerna run test --no-bail",
"type": "lerna run type --no-bail",
"prepare": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.26.0",
"eslint-config-bkiac": "8.1.1",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": ">=6",
"lerna": "^4.0.0",
"lint-staged": ">=10",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"prettier-config-bkiac": "^1.1.1",
"prettier-plugin-packagejson": "^2.2.11",
"typescript": "^4.2.4"
}
}