-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.37 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
{
"name": "@metamask/test-dapp",
"version": "4.0.1",
"description": "A simple dapp used in MetaMask e2e tests.",
"engines": {
"node": ">= 10"
},
"scripts": {
"deploy": "./deploy.sh",
"lint": "eslint . --ext js,json && prettier ./src -c",
"lint:fix": "eslint . --fix --ext js,json && prettier ./src -c --write",
"start": "webpack-dev-server",
"build": "webpack --mode production",
"test": "yarn lint",
"prepublishOnly": "yarn test && yarn build"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MetaMask/test-dapp.git"
},
"files": [
"dist/"
],
"author": "MetaMask",
"license": "MIT",
"bugs": {
"url": "https://github.com/MetaMask/test-dapp/issues"
},
"homepage": "https://github.com/MetaMask/test-dapp#readme",
"dependencies": {},
"devDependencies": {
"@metamask/eslint-config": "^4.0.0",
"@metamask/onboarding": "^1.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.2",
"eslint": "^7.7.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-node": "^11.1.0",
"eth-sig-util": "^2.5.3",
"ethereumjs-util": "^5.1.1",
"ethers": "^5.0.18",
"prettier": "^2.0.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}