-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 814 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
{
"name": "vmex",
"version": "0.0.10",
"description": "VMEX Monorepo",
"repository": "https://github.com/vmex-finance/vmex",
"private": true,
"author": "VMEX-finance",
"license": "MIT",
"workspaces": [
"packages/**"
],
"scripts": {
"contracts": "yarn workspace @vmexfinance/contracts",
"sdk": "yarn workspace @vmexfinance/sdk",
"start:dev": "yarn contracts compile && yarn sdk build && yarn contracts start:dev && yarn sdk fund:accounts"
},
"dependencies": {
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"prettier": {
"overrides": [
{
"files": "*.sol",
"options": {
"tabWidth": 2,
"printWidth": 120,
"bracketSpacing": true
}
}
]
},
"devDependencies": {
"lerna": "^5.6.2"
}
}