-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
99 lines (99 loc) · 3.92 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
{
"name": "palisade",
"version": "1.0.0",
"description": "The Compound Web3 Front-end",
"main": "index.js",
"scripts": {
"build": "node --unhandled-rejections=strict --max-old-space-size=8192 scripts/build.js",
"start": "node --unhandled-rejections=strict scripts/start.js dapp",
"package": "elm-package",
"make": "elm-make",
"repl": "elm-repl",
"reactor": "elm-reactor",
"watch-css": "npx dart-sass --watch -I. -Inode_modules src/scss:src/css-build",
"build-css": "npx dart-sass -I. -Inode_modules src/scss:src/css-build",
"deploy-gcloud": "bash scripts/deploy-gcloud.sh",
"deploy-ipfs": "node --experimental-repl-await scripts/ipfs.js",
"i18n": "node --unhandled-rejections=strict config/tx-cli.js -a 'src/strings/always_english_strings.json' -p 'src/strings/strings.<lang>.json' -s en -l es zh fr ko -o src/elm/Strings/Translations.elm -m Strings.Translations -t",
"watch-i18n": "node --unhandled-rejections=strict config/tx-cli.js -a 'src/strings/always_english_strings.json' -p 'src/strings/strings.<lang>.json' -s en -l es zh fr ko -o src/elm/Strings/Translations.elm -m Strings.Translations -t -w",
"release": "node --unhandled-rejections=strict scripts/release.js",
"sleuth": "forge build --via-ir -c src/sleuth -o src/sleuth/out"
},
"author": "",
"license": "GPL-3.0",
"dependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.9.2",
"@babel/runtime-corejs3": "^7.10.2",
"@compound-finance/sleuth": "^1.0.1-alpha8",
"@material/switch": "^3.0.0",
"assets-webpack-plugin": "^3.5.1",
"autoprefixer": "^9.7.6",
"babel-loader": "^8.0.0",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"chalk": "^4.0.0",
"clean-webpack-plugin": "^3.0.0",
"cli-table": "0.3.1",
"compound-components": "https://github.com/compound-finance/compound-components.git#6b033ba07607d6a6abb9a2018c2b243e14d2fef5",
"compound-config": "https://github.com/compound-finance/compound-config.git#ff8e979ffcb286d09884163cc928688f213abe71",
"connect-history-api-fallback": "^1.5.0",
"core-js": "3",
"cross-spawn": "^7.0.2",
"css-loader": "^3.5.3",
"dart-sass": "^1.25.0",
"dotenv": "^8.2.0",
"elm": "^0.19.1-5",
"elm-hot-webpack-loader": "^1.0.0",
"elm-webpack-loader": "^6.0.1",
"ethereumjs-wallet": "https://github.com/ethereumjs/ethereumjs-wallet.git#2121d5a32195e595accc9dce81d14bae8b4e6de6",
"ethjs-provider-signer": "^0.1.4",
"file-loader": "^6.0.0",
"fs-extra": "^9.0.0",
"html-webpack-plugin": "4.2.1",
"http-proxy-middleware": "^1.0.3",
"mini-css-extract-plugin": "^0.9.0",
"minimist": "1.2.5",
"mocha": "^7.1.2",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-loader": "3.0.0",
"promise": "8.1.0",
"prompt": "1.0.0",
"react-dev-utils": "^10.2.1",
"react-error-overlay": "^6.0.7",
"regenerator-runtime": "^0.13.5",
"solc": "^0.8.19",
"string-replace-loader": "^2.1.1",
"style-loader": "^1.2.1",
"sw-precache-webpack-plugin": "^1.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.1.0",
"web3-eth": "^1.3.5",
"web3-utils": "^1.3.5",
"webpack": "^4.35.2",
"webpack-dev-server": "^3.7.2",
"webpack-manifest-plugin": "^2.0.3",
"whatwg-fetch": "3.0.0"
},
"devDependencies": {
"elm-format": "=0.8.5",
"elm-test": "0.19.1-revision2",
"ethers": "^5.6.9",
"express": "^4.17.1",
"google-translate": "^3.0.0",
"ipfs-http-client": "^52.0.1",
"node-fetch": "2",
"postcss-url": "^8.0.0",
"puppeteer": "^9.1.1"
},
"resolutions": {
"**/ethereumjs-wallet": "https://github.com/ethereumjs/ethereumjs-wallet.git#2121d5a32195e595accc9dce81d14bae8b4e6de6",
"**/fsevents": "^2.1.3",
"**/node-hid": "^1.2.0",
"**/sha3": "^2.1.2",
"**/elm": "^0.19.1-5",
"**/elmi-to-json": "^1.4.3"
}
}