-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 2.22 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 2.22 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
43
44
45
46
47
{
"name": "huma-js",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"lerna:publish": "yarn lerna publish patch --no-private",
"lerna:publish:canary": "yarn lerna publish patch --preid beta --canary --no-private",
"start:widget": "yarn workspace @huma-finance/widgets cosmos",
"build:all": "yarn build:shared && yarn build:web-shared && yarn build:sdk && yarn build:widget",
"build:widget": "yarn workspace @huma-finance/widgets build",
"build:web-shared": "yarn workspace @huma-finance/web-shared build",
"build:shared": "yarn workspace @huma-finance/shared build",
"build:sdk": "yarn workspace @huma-finance/sdk build",
"prettier:sdk": "yarn workspace @huma-finance/sdk prettier",
"prettier:shared": "yarn workspace @huma-finance/shared prettier",
"prettier:web-shared": "yarn workspace @huma-finance/web-shared prettier",
"prettier:widget": "yarn workspace @huma-finance/widgets prettier",
"prettier:all": "yarn prettier:widget && yarn prettier:shared && yarn prettier:web-shared && yarn prettier:sdk",
"docs:all": "yarn docs:sdk && yarn docs:widget",
"docs:sdk": "yarn workspace @huma-finance/sdk generateDocs",
"docs:widget": "yarn workspace @huma-finance/widgets generateDocs",
"test:all": "yarn test:shared && yarn test:web-shared && yarn test:sdk",
"test:sdk": "yarn workspace @huma-finance/sdk test",
"test:shared": "yarn workspace @huma-finance/shared test",
"test:web-shared": "yarn workspace @huma-finance/web-shared test",
"test:badges:sdk": "yarn workspace @huma-finance/sdk test:badges",
"lint:all": "yarn lint:shared && yarn lint:web-shared && yarn lint:sdk && yarn lint:widget",
"lint:sdk": "yarn workspace @huma-finance/sdk lint",
"lint:shared": "yarn workspace @huma-finance/shared lint",
"lint:web-shared": "yarn workspace @huma-finance/web-shared lint",
"lint:widget": "yarn workspace @huma-finance/widgets lint",
"prepare": "husky install",
"postCommit": "bash .husky/post-commit"
},
"devDependencies": {
"lerna": "9.0.3",
"vite": "6.0.11",
"vite-plugin-dts": "4.5.0",
"vite-plugin-node-polyfills": "0.23.0",
"vite-plugin-svgr": "4.3.0"
},
"dependencies": {}
}