-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.16 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.5.1",
"engines": {
"node": ">=v16",
"yarn": ">=3.5.1"
},
"scripts": {
"build": "yarn exec:foreach run build",
"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": "17.6.5",
"@commitlint/config-conventional": "17.6.5",
"@types/express": "4.17.17",
"@types/jest": "29.5.2",
"@types/node": "18.16.15",
"@types/prettier": "2.7.3",
"@types/validator": "13.7.17",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"eslint": "8.41.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-node": "0.3.7",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-ordered-imports": "0.6.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "47.0.0",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-mock": "29.5.0",
"lint-staged": "13.2.2",
"markdownlint-cli": "0.34.0",
"prettier": "2.8.8",
"pretty-quick": "3.1.3",
"rimraf": "5.0.1",
"run-script-webpack-plugin": "0.2.0",
"ts-jest": "29.1.0",
"typescript": "5.0.4",
"winston-transport": "4.5.0"
},
"lint-staged": {
"**/*.md": [
"yarn lint:markdown"
]
},
"workspaces": [
"packages/*"
]
}