-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 904 Bytes
/
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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"_postinstall": "husky install",
"prepublish": "pinst --disable",
"postpublish": "pinst --enable",
"bootstrap": "lerna bootstrap",
"build": "lerna run build --stream",
"lint": "eslint . --cache --fix --ext .ts,.tsx",
"format": "prettier --loglevel warn --write \"**/*.{ts,tsx,css}\"",
"release": "lerna version --conventional-commits"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,css}": "prettier --write"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.15.0",
"eslint-config-alloy": "^3.8.2",
"husky": "^5.0.4",
"lerna": "^3.22.1",
"lint-staged": "^10.5.3",
"pinst": "^2.1.1",
"prettier": "^2.2.1"
},
"version": "0.0.0"
}