-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
30 lines (30 loc) · 1023 Bytes
/
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
{
"name": "x-fuji",
"version": "1.0.0",
"description": "Cross-chain Lending Aggregator",
"repository": "https://github.com/Fujicracy/x-fuji",
"author": "Fujidao Labs OÜ",
"license": "GPL-2.0-or-later",
"private": "no",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "yarn workspace @x-fuji/frontend start",
"protocol:install": "yarn workspace @x-fuji/protocol forge:install",
"protocol:build": "yarn workspace @x-fuji/protocol build",
"protocol:test": "yarn workspace @x-fuji/protocol test",
"protocol:format:fix": "yarn workspace @x-fuji/protocol format:fix",
"sdk:build": "yarn workspace @x-fuji/sdk build",
"sdk:test": "yarn workspace @x-fuji/sdk test",
"sdk:lint": "yarn workspace @x-fuji/sdk lint",
"prepare": "husky install",
"frontend:dev": "yarn workspace @x-fuji/frontend dev"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"husky": "^8.0.0",
"lint-staged": ">=10"
}
}