-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
59 lines (59 loc) · 2.2 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
{
"description": "GSN Sample MetaCoin",
"name": "gsn-metacoin",
"version": "0.0.3",
"scripts": {
"test": "truffle test",
"migrate": "truffle migrate",
"lint": "eslint ./",
"old-prepare": "truffle compile && npm test && npm run lint && webpack-cli --config ./webpack.config.js",
"pack": "webpack-cli --mode production --config ./webpack.config.js",
"build": "truffle compile && yarn update-deployed && yarn run pack",
"update-deployed": "./scripts/update-deployed.js --deployed deployed.json",
"dev": "webpack-dev-server",
"ganache": "ganache-cli -k 'istanbul' -l 1e8",
"dev-with-gsn": "npx gsn deploy-relay-hub && npx gsn fund-paymaster && (npx gsn run-relayer --Workdir /tmp/server --DevMode --RelayHubAddress `grep -o -E \"0x[a-fA-F0-9]+\" build/gsn/RelayHub.json` & ) | grep -m 1 \"intialized\" && npx gsn register-relayer && npx truffle migrate && npm run dev"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.1",
"ganache-cli": "6.9.1",
"html-webpack-plugin": "^3.2.0",
"json-loader": "^0.5.7",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.3",
"solc": "0.5.16",
"source-map-support": "^0.5.3",
"style-loader": "^0.21.0",
"truffle": "5.1.22",
"truffle-contract": "^4.0.31",
"web3": "1.2.6",
"web3-utils": "1.2.6",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.6",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"@opengsn/gsn": "0.8.3",
"truffle-hdwallet-provider": "^1.0.17"
}
}