This repository has been archived by the owner on Sep 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
77 lines (77 loc) · 2.21 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
{
"name": "scd-cdp-portal",
"license": "AGPL-3.0",
"version": "0.1.0",
"contributors": [
"Gonzalo Balabasquer <gbalabasquer@makerdao.com>",
"Michael Elliot <mike@makerdao.com>"
],
"description": "Collateralized Debt Position Portal for creating and managing Single-Collateral Dai CDPs in the Dai Stablecoin System.",
"private": true,
"homepage": "https://cdp.makerdao.com",
"dependencies": {
"@ledgerhq/hw-app-eth": "^4.7.3",
"@ledgerhq/hw-transport-u2f": "^4.7.3",
"axios": "^0.19.0",
"bignumber.js": "^7.2.1",
"create-react-class": "^15.6.3",
"ethereumjs-tx": "^1.3.4",
"hdkey": "^0.8.0",
"ismobilejs": "^0.5.1",
"jazzicon": "^1.5.0",
"markdown-to-jsx": "^6.10.3",
"mixpanel-browser": "^2.29.0",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"rc-steps": "^3.5.0",
"react": "^16.9.0",
"react-document-title": "^2.0.3",
"react-dom": "^16.9.0",
"react-ga": "^2.6.0",
"react-rangeslider": "^2.2.0",
"react-router-dom": "^5.0.1",
"react-scripts": "3.1.1",
"react-select": "^1.2.1",
"react-slick": "^0.25.2",
"react-tooltip": "^3.10.0",
"trezor-connect": "^7.0.5",
"walletlink": "^1.0.0",
"web3": "^0.20.6",
"web3-provider-engine": "^14.0.4"
},
"scripts": {
"build-css": "node-sass-chokidar src/scss/ -o src/scss/ --recursive",
"watch-css": "yarn build-css && node-sass-chokidar src/scss/ -o src/scss/ --recursive --watch",
"start-js": "craco start",
"start": "npm-run-all -p watch-css start-js",
"build": "yarn build-css && craco build",
"test": "craco test",
"postinstall": "patch-package"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@craco/craco": "^5.3.0",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-cloudfront-invalidate": "^0.1.5",
"gulp-s3-upload": "^1.7.3",
"node-sass-chokidar": "^1.3.5",
"npm-run-all": "^4.1.5",
"patch-package": "^6.1.4",
"postinstall-postinstall": "^2.0.0"
}
}