-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.01 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
{
"private": true,
"devDependencies": {
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
},
"scripts": {
"lerna": "lerna",
"build": "lerna run prepare --since master --stream --sort -- --scripts-prepend-node-path",
"build:all": "lerna run build",
"publish": "lerna publish",
"canary": "lerna publish --canary preminor --npm-tag alpha",
"next": "lerna publish --bump prerelease --npm-tag next",
"lint": "lerna run lint",
"lint:fix": "lerna run lint -- --fix",
"prettify": "prettier '**/*.{js,jsx,ts,tsx,json,css,html,md}' --ignore-path .eslintignore --single-quote --write",
"precommit": "lint-staged",
"test": "lerna run test --"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=8.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --single-quote --write",
"yarn lint:fix",
"git add"
],
"*.{json,css,html,md}": [
"prettier --single-quote --write",
"git add"
]
}
}