-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
{
"name": "@blockmatic/dev-configs-monorepo",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/blockmatic/dev-configs.git"
},
"scripts": {
"test": "lerna run test --stream",
"build": "lerna run build --stream",
"bootstrap": "lerna bootstrap --use-workspaces",
"release": "env-cmd lerna publish",
"diff": "lerna diff",
"lint": "eslint --ignore-path .gitignore .",
"check-types": "tsc",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"",
"format": "yarn prettier -- --write",
"check-format": "yarn prettier -- --list-different",
"validate": "yarn check-types && yarn check-format && yarn lint && yarn build"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"env-cmd": "^10.1.0",
"eslint": "^8.35.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lerna": "^6.5.1",
"prettier": "^2.8.4",
"typescript": "4.9"
},
"resolutions": {
"lodash": ">=4.17.12",
"mixin-deep": ">=1.3.2",
"set-value": ">=3.0.1"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"lint-staged": "^13.1.2"
}
}