-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.32 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
{
"private": true,
"name": "root",
"version": "1.0.0",
"description": "monorepo root",
"main": "index.js",
"devDependencies": {
"lerna": "^7.1.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0"
},
"scripts": {
"bootstrap": "npm run build",
"build": "lerna run build",
"test": "lerna run test",
"updateSnapshot": "lerna run updateSnapshot",
"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",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/azu/power-doctest.git"
},
"keywords": [],
"author": "azu",
"license": "MIT",
"bugs": {
"url": "https://github.com/azu/power-doctest/issues"
},
"homepage": "https://github.com/azu/power-doctest",
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"packageManager": "[email protected]"
}