forked from OTCMAKER/dai.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.94 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@makerdao/dai",
"version": "0.14.0",
"contributors": [
"Wouter Kampmann <[email protected]>",
"Sean Brennan <[email protected]>",
"Tyler Sorensen <[email protected]>",
"Ethan Bennett <[email protected]>",
"Lawrence Wang <[email protected]>",
"Joshua Levine <[email protected]>",
"Michael Elliot <[email protected]>"
],
"description": "Library for interacting with the Dai Stablecoin System.",
"license": "MIT",
"keywords": [
"makerdao",
"mkr",
"dai",
"cdp",
"eth",
"margin"
],
"bugs": {
"url": "https://github.com/makerdao/dai.js/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/makerdao/dai.js.git"
},
"module": "src/index.js",
"main": "src/index.js",
"scripts": {
"build:frontend": "./scripts/build-frontend.sh",
"build:backend": "./scripts/build-backend.sh",
"build:backend:watch": "sane ./scripts/build-backend.sh src --wait=10",
"build:backend:src:watch": "./scripts/watch-backend-src.sh",
"coverage": "./scripts/run-testchain.sh --ci jest --runInBand --coverage --config ./test/config/jestDefaultConfig.json",
"lint": "eslint src test",
"precommit": "lint-staged",
"prepush": "npm run test",
"prettier": "prettier --single-quote --write '{src,test,contracts,lib}/**/*.js'",
"test": "./scripts/run-testchain.sh --ci jest --runInBand --config ./test/config/jestDefaultConfig.json",
"test:watch": "./scripts/run-testchain.sh --ci jest --watch --runInBand --config ./test/config/jestDefaultConfig.json",
"test:logs": "tail -f ganache.out | grep -v 'eth_blockNumber'",
"test:net": "./scripts/run-testchain.sh",
"test:mainnet": "export NETWORK='mainnet' && jest --runInBand --config ./test/config/jestIntegrationConfig.json",
"test:kovan": "export NETWORK='kovan' && jest --runInBand --config ./test/config/jestIntegrationConfig.json",
"test:integration": "export NETWORK='test' && ./scripts/run-testchain.sh --ci jest --runInBand --config ./test/config/jestIntegrationConfig.json"
},
"lint-staged": {
"./{src,web,test,contracts,lib}/**/*.js": [
"prettier --single-quote --write",
"eslint"
]
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.4.0",
"babel-loader": "^8.0.5",
"babel-plugin-module-resolver": "^3.2.0",
"chokidar": "^2.0.4",
"copyfiles": "^2.0.0",
"eslint": "^5.15.1",
"eslint-loader": "^1.9.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"jest": "^24.5.0",
"lint-staged": "^7.1.0",
"prettier": "^1.12.1",
"sane": "^4.0.3",
"solc": "^0.4.23",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^3.11.0",
"webpack-bundle-analyzer": "^2.13.1"
},
"dependencies": {
"@babel/runtime": "^7.3.4",
"@makerdao/currency": "^0.9.0",
"@makerdao/services-core": "^0.9.5",
"bignumber.js": "^7.2.1",
"chalk": "^2.4.1",
"debug": "^3.1.0",
"ethers": "^3.0.15",
"ethers-web3-bridge": "0.0.1",
"eventemitter2": "^5.0.1",
"invariant": "^2.2.2",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.11",
"lodash.intersection": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.1",
"lodash.times": "^4.3.2",
"lodash.uniq": "^4.5.0",
"lodash.values": "^4.3.0",
"promise-props": "^1.0.0",
"toposort": "^2.0.2",
"web3": "1.0.0-beta.34",
"web3-provider-engine": "makerdao/provider-engine#kovan-fix-dist"
}
}