-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
87 lines (87 loc) · 2.93 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
{
"name": "migrate-dashboard",
"version": "0.1.0",
"license": "AGPL-3.0-only",
"main": "index.js",
"repository": "[email protected]:makerdao/migrate-dashboard.git",
"author": "[email protected]",
"scripts": {
"dev": "next",
"https": "yarn dev & dev-proxy -p 3000:3003",
"build": "next build && next export",
"start": "next start",
"test": "yarn hardhat & (sleep 5 && npm run fund && yarn testchain --ci jest --runInBand) && kill $TASKHARDHAT_PID",
"test:mcd": "yarn hardhat & (sleep 5 && npm run fund && yarn testchain --ci jest --runInBand mcd-es --coverage) && kill $TASKHARDHAT_PID",
"testchain": "./node_modules/@makerdao/testchain/scripts/launch -s default --fast",
"hardhat": "npx hardhat node --network hardhat & TASKHARDHAT_PID=$!",
"fund": "npx hardhat run scripts/setup.js --network localhost"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/runtime-corejs2": "^7.9.2",
"@makerdao/currency": "0.9.10",
"@makerdao/dai": "0.42.5-alpha.0",
"@makerdao/dai-plugin-ledger-web": "^0.9.7",
"@makerdao/dai-plugin-mcd": "1.8.6-alpha.3",
"@makerdao/dai-plugin-migrations": "1.5.5-alpha.2",
"@makerdao/dai-plugin-scd": "1.4.3-alpha.2",
"@makerdao/dai-plugin-trezor-web": "^0.9.6",
"@makerdao/dai-plugin-walletconnect": "^0.0.8",
"@makerdao/dai-plugin-walletlink": "^0.0.1",
"@makerdao/ui-components-core": "^0.3.3",
"@makerdao/ui-components-footer": "^0.1.16",
"@makerdao/ui-components-header": "^0.2.2",
"@walletconnect/browser": "^1.0.0-beta.39",
"@walletconnect/qrcode-modal": "^1.0.0-beta.39",
"@zeit/next-css": "^1.0.1",
"add": "^2.0.6",
"body-scroll-lock": "^2.6.4",
"dotenv": "^14.2.0",
"jest": "^27.3.1",
"lodash": "^4.17.15",
"next": "^9.3.2",
"next-images": "^1.2.0",
"react": "^16.11.0",
"react-device-detect": "^1.9.10",
"react-dom": "^16.11.0",
"react-jazzicon": "^0.1.3",
"react-localization": "^1.0.15",
"react-modal-hook": "^2.0.0",
"react-spring": "^8.0.27",
"react-transition-group": "^4.3.0",
"styled-components": "^4.4.1",
"trezor-connect": "^7.0.5",
"yarn": "^1.22.17"
},
"devDependencies": {
"@makerdao/test-helpers": "^0.2.1",
"@makerdao/testchain": "1.1.33-beta5",
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@testing-library/react": "^9.3.2",
"babel-eslint": "^10.0.3",
"babel-plugin-styled-components": "^1.10.6",
"cypress": "^9.3.1",
"dev-proxy": "^2.1.2",
"eslint": "^6.6.0",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"hardhat": "^2.9.3",
"husky": "^3.0.9",
"lint-staged": "^9.4.3",
"prettier": "^2.0.4",
"start-server-and-test": "^1.14.0",
"wait-for-expect": "^3.0.1"
},
"engines": {
"node": ">=10.x.x"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote",
"eslint"
]
},
"husky": {
"hooks": {}
}
}