-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.42 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.42 KB
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
{
"name": "sovryn-monorepo",
"private": true,
"scripts": {
"lerna:bootstrap": "yarn build:common && yarn build:wallet && yarn build:react-wallet && npx lerna bootstrap --contents dist",
"lerna:publish": "npx lerna publish --contents dist",
"build:common": "cd packages/common && yarn && yarn build && cd dist && yarn link",
"build:wallet": "cd packages/wallet && yarn link @sovryn/common && yarn && yarn build && cd dist && yarn link",
"build:react-wallet": "yarn prepare-example && cd packages/react-wallet && yarn && yarn link @blueprintjs/core && yarn build",
"prepare-example": "cd packages/react-wallet/example && yarn && cd node_modules/@blueprintjs/core && yarn link",
"changelog": "lerna-changelog --from=v1.0.0"
},
"devDependencies": {
"husky": "^5.2.0",
"lerna": "^3.22.1",
"lerna-changelog": "^1.0.1",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,yml,yaml,css,scss,ts,tsx,md}": [
"prettier --write"
]
},
"changelog": {
"repo": "DistributedCollective/sovryn-monorepo",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal"
},
"cacheDir": ".changelog"
},
"version": "0.0.0"
}