-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"private": true,
"name": "root",
"veraion": "1.2.1",
"scripts": {
"bootstrap": "lerna bootstrap && npm run build",
"build": "lerna run build",
"test": "lerna run test",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"versionup": "lerna version --conventional-commits",
"versionup:patch": "lerna version patch --conventional-commits",
"versionup:minor": "lerna version minor --conventional-commits",
"versionup:major": "lerna version major --conventional-commits",
"release": "lerna publish from-package",
"build:website": "cd website && yarn run build"
},
"workspaces": {
"packages": [
"packages/*",
"website"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/azu/morpheme-match.git"
},
"keywords": [],
"author": "azu",
"license": "MIT",
"bugs": {
"url": "https://github.com/azu/morpheme-match/issues"
},
"homepage": "https://github.com/azu/morpheme-match#readme",
"devDependencies": {
"husky": "^2.4.0",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4
},
"husky": {
"hooks": {
"precommit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
}
}