-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.58 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
{
"name": "berry",
"packageManager": "yarn@3.6.1",
"type": "module",
"private": true,
"workspaces": [
"./api",
"./apispec",
"./components",
"./frontend"
],
"scripts": {
"a": "yarn workspace @collacode/api",
"as": "yarn workspace @collacode/apispec",
"c": "yarn workspace @collacode/components",
"f": "yarn workspace @collacode/frontend",
"lint": "yarn lint:r && yarn workspaces foreach run lint",
"lint:r": "npm-run-all --parallel lint:r:eslint lint:r:eslint",
"lint:r:eslint": "eslint --fix --ext cjs,.js,.jsx,.ts,.tsx './*'",
"lint:r:prettier": "prettier --write --ignore-unknown './*' '!./*.{cjs,js,jsx,ts,tsx}' ",
"postinstall": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "*",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"npm-run-all": "*",
"prettier": "*",
"typescript": "*"
},
"resolutions": {
"prettier": "2.8.8",
"typescript": "^5.1.3",
"eslint": "^8.44.0",
"npm-run-all": "^4.1.5"
}
}