-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.63 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
35
36
37
38
39
40
41
42
{
"private": true,
"name": "@decentral.ee/rdai",
"version": "0.0.1",
"description": "Redeemable Dai with detached principal and interests",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/decentral-ee/rdai.git"
},
"bugs": {
"url": "https://github.com/decentral-ee/rdai/issues"
},
"homepage": "https://github.com/decentral-ee/rdai#readme",
"scripts": {
"sync": "npm run sync:submodules",
"sync:submodules": "git submodule init && git submodule update",
"bootstrap": "npm ci && lerna bootstrap --ci && npm run link-parent-bin",
"bootstrap:noci": "npm install && lerna bootstrap --no-ci && npm run link-parent-bin",
"reset": "npm run reset:package-json && npm run reset:node_modules",
"reset:package-json": "rm -f package-lock.json && npx lerna exec -- rm -f package-lock.json",
"reset:node_modules": "npx lerna exec -- rm -rf node_modules && rm -rf node_modules",
"link-parent-bin": "for i in ethereum front;do link-parent-bin -c $i || exit 1;done",
"build": "lerna run build",
"clean": "run-s clean:*",
"clean:lerna": "lerna clean --yes",
"dev": "lerna run dev --parallel",
"contracts:dev": "lerna run --scope '@rdai/*-contracts' dev --parallel"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.1.0",
"husky": "^3.0.1",
"lerna": "^3.16.4",
"link-parent-bin": "^1.0.2",
"mocha": "^6.2.0",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"airswap.js": "^0.1.8"
}
}