-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.37 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
{
"name": "huma-js",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"lernaPublish": "yarn lerna publish --no-private",
"start:widget": "yarn workspace @huma-finance/widgets cosmos",
"build:widget": "yarn workspace @huma-finance/widgets build",
"build:shared": "yarn workspace @huma-finance/shared build",
"prettier:widget": "yarn workspace @huma-finance/widgets prettier",
"prettier:shared": "yarn workspace @huma-finance/shared prettier",
"prettier:sdk": "yarn workspace @huma-finance/sdk prettier",
"prettier:all": "yarn prettier:widget && yarn prettier:shared && yarn prettier:sdk",
"docs:widget": "yarn workspace @huma-finance/widgets generateDocs",
"test:shared": "yarn workspace @huma-finance/shared test",
"test:sdk": "yarn workspace @huma-finance/sdk test",
"test:all": "yarn test:shared && yarn test:sdk",
"test:badges:sdk": "yarn workspace @huma-finance/sdk test:badges",
"lint:shared": "yarn workspace @huma-finance/shared lint",
"lint:sdk": "yarn workspace @huma-finance/sdk lint",
"lint:widget": "yarn workspace @huma-finance/widgets lint",
"lint:all": "yarn lint:shared && yarn lint:sdk && yarn lint:widget",
"prepare": "husky install",
"postCommit": "bash .husky/post-commit"
},
"devDependencies": {
"husky": "^8.0.3",
"lerna": "^6.6.1"
}
}