-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (37 loc) · 932 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
31
32
33
34
35
36
37
38
{
"name": "yield-ui",
"packageManager": "[email protected]",
"author": "Yield Inc.",
"repository": {
"url": "git+https://github.com/yieldprotocol/ui-monorepo.git",
"type": "git"
},
"private": "true",
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean --yes",
"document": "typedoc" ,
"lint": "yarn run eslint --ext .ts,.tsx .",
"test": "lerna run test",
"build": "lerna run build",
"prestart": "yarn build",
"prepack": "yarn build",
"compile": "lerna run compile",
"startdev": "lerna run watch"
},
"dependencies": {
"@yield-protocol/ui-core": "^1.0.3",
"@yield-protocol/ui-react": "^1.0.3",
"@yield-protocol/ui-math": "^1.0.3",
"@yield-protocol/ui-contracts": "^1.0.1"
},
"devDependencies": {
"esbuild-serve": "^1.0.1",
"lerna": "^4.0.0",
"typedoc": "^0.22.17"
},
"workspaces": [
"packages/*",
"examples/*"
]
}