forked from OasisDEX/mcd-cdp-portal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 3.87 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
112
{
"name": "mcd-cdp-portal",
"description": "The primary web interface for interacting with the Multi-Collateral Dai smart contract system.",
"version": "0.2.6-rc.1",
"license": "AGPL",
"private": true,
"homepage": "/borrow-old/",
"contributors": [
"Michael Elliot <[email protected]>",
"Joshua Levine <[email protected]>",
"Adrian le Bas <[email protected]>",
"Fernando D. Tiberti <[email protected]>"
],
"dependencies": {
"@craco/craco": "^5.6.4",
"@hot-loader/react-dom": "17.0.0-rc.2",
"@makerdao/currency": "^0.9.9",
"@makerdao/dai": "^0.32.6",
"@makerdao/dai-plugin-config": "^0.2.15",
"@makerdao/dai-plugin-ledger-web": "^0.9.10",
"@makerdao/dai-plugin-portis": "0.0.4",
"@makerdao/dai-plugin-mcd": "^1.6.33",
"@makerdao/dai-plugin-trezor-web": "^0.9.6",
"@makerdao/dai-plugin-walletconnect": "^0.0.8",
"@makerdao/dai-plugin-walletlink": "^0.0.4",
"@makerdao/test-helpers": "^0.2.1",
"@makerdao/ui-components-core": "0.3.4",
"@makerdao/ui-components-footer": "^0.1.16",
"@makerdao/ui-components-header": "^0.1.11-alpha.6",
"@makerdao/ui-components-onboarding": "^0.1.2",
"@myetherwallet/dai-plugin-mewconnect": "0.0.19",
"@testing-library/jest-dom": "^5.11.4",
"@vimeo/player": "^2.13.0",
"@walletconnect/browser": "^1.0.0-beta.36",
"@walletconnect/qrcode-modal": "^1.0.0-beta.36",
"babel-loader": "8.1.0",
"bignumber.js": "^8.0.2",
"body-scroll-lock": "^2.6.1",
"dai-plugin-dcent-web": "^0.0.1",
"decimal.js": "^10.2.0",
"immer": "^3.1.1",
"js-cookie": "^2.2.1",
"lodash": "^4.17.11",
"lodash.debounce": "^4.0.8",
"lodash.groupby": "^4.6.0",
"lodash.uniqby": "^4.7.0",
"mixpanel-browser": "^2.26.0",
"navi": "^0.13.6",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-device-detect": "^1.9.10",
"react-dom": "^16.13.1",
"react-ga": "^2.5.7",
"react-helmet": "^5.2.1",
"react-hot-loader": "^4.8.0",
"react-jazzicon": "^0.1.3",
"react-localization": "^1.0.13",
"react-navi": "^0.13.6",
"react-scripts": "5.0.0",
"react-slider": "^1.0.4",
"react-spring": "^8.0.15",
"react-visibility-sensor": "^5.1.1",
"reinspect": "^1.0.1",
"styled-components": "^4.1.3",
"styled-system": "^4.0.1",
"window-scroll-manager": "^1.1.4"
},
"scripts": {
"start": "NODE_ENV=development craco start",
"start:https": "HTTPS=true NODE_ENV=development craco start",
"build": "craco --max_old_space_size=8192 build",
"precommit": "lint-staged",
"test": "yarn testchain --ci craco test --runInBand --env=jest-environment-jsdom-sixteen",
"testchain": "./node_modules/@makerdao/testchain/scripts/launch -s default --fast",
"ci": "yarn test --coverage",
"now-build": "yarn build",
"remove-sourcemaps": "rm -rf build/static/js/*.map",
"deploy-main": "./scripts/deploy-mainnet"
},
"engines": {
"node": ">=10.x.x"
},
"lint-staged": {
"*.js": ["prettier --write --single-quote"]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [">0.2%", "not dead", "not ie <= 11", "not op_mini all"],
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@makerdao/testchain": "^1.1.18",
"@testing-library/react": "^11.0.4",
"babel-eslint": "10.1.0",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^7.0.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.2.0",
"husky": "^4.0.0",
"jest-environment-jsdom-sixteen": "^1.0.3",
"lighthouse": "^9.3.0",
"lint-staged": "^9.2.5",
"prettier": "^1.15.3",
"rxjs": "^6.5.4",
"wait-for-expect": "^1.1.1",
"webpack-bundle-analyzer": "^3.0.3"
},
"types": "./typings/main.d.ts"
}