forked from nicolaspearson/kalos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.17 KB
/
package.json
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "kalos",
"private": true,
"version": "0.0.0",
"description": "This is a monorepo for various libraries.",
"packageManager": "yarn@3.2.1",
"engines": {
"node": ">=v16.15.0",
"yarn": ">=3.2.1"
},
"scripts": {
"doctor": "yarn dlx @yarnpkg/doctor .",
"exec:eslint": "eslint --cache",
"exec:jest": "jest --coverage --color --detectOpenHandles",
"exec:prettier": "prettier --config .prettierrc --ignore-path .prettierignore --no-editorconfig",
"exec:foreach": "yarn workspaces foreach -vpit --exclude kalos",
"lint:markdown": "markdownlint -c markdownlint.yml $(find . -name '*.md' -not -path './.yarn/*')",
"lint": "yarn lint:markdown && yarn exec:foreach run lint",
"lint:fix": "yarn lint:eslint:fix && yarn exec:foreach lint:fix",
"postinstall": "husky install",
"sdk": "yarn dlx @yarnpkg/sdks vscode"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@types/express": "^4.17.13",
"@types/jest": "27.5.1",
"@types/node": "^17.0.33",
"@types/prettier": "^2.6.1",
"@types/validator": "^13.7.2",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-ordered-imports": "^0.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-mock": "^28.1.0",
"lint-staged": "^12.4.1",
"logform": "^2.4.0",
"markdownlint-cli": "^0.31.1",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"run-script-webpack-plugin": "^0.0.12",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4",
"winston-transport": "^4.5.0"
},
"lint-staged": {
"**/*.md": [
"yarn lint:markdown"
]
},
"workspaces": [
"packages/*"
]
}