This repository was archived by the owner on Aug 28, 2025. It is now read-only.
forked from yann300/remix-contract-getter
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.23 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.23 KB
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
{
"name": "remix-contract-getter",
"author": "edi@shardlabs.io",
"version": "0.2.1-beta",
"description": "Source metadata fetcher and validator",
"scripts": {
"dev": "webpack-dev-server --open --config webpack.dev.js",
"build": "npm install && rimraf dist/ && webpack --config webpack.prod.js",
"serve": "serve -l 3000 dist/ --no-clipboard ",
"start": "npm run build && npm run serve",
"ipfs": "node bin/upload-remix-plugin ./dist"
},
"keywords": [
"source",
"verification",
"remix",
"ethereum",
"plugin"
],
"dependencies": {
"@remixproject/plugin": "^0.3.19",
"@remixproject/plugin-webview": "^0.3.19",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"axios": "^0.19.2",
"react": "^16.12.0",
"react-bootstrap": "^1.0.0-beta.12",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.12.0",
"react-dropzone": "^10.2.2",
"react-scripts": "^3.4.3",
"react-select": "^3.1.0",
"web3-utils": "^1.3.4"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"copy-webpack-plugin": "^6.1.1",
"css-loader": "^3.2.0",
"dotenv-webpack": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"inquirer": "^8.2.1",
"ipfs-http-client": "^35.1.0",
"is-base64": "^1.1.0",
"is-url": "^1.2.4",
"rimraf": "2.6.3",
"semver": "^7.3.5",
"serve": "^11.3.2",
"signale": "^1.4.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"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"
]
}
}