-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.11 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.11 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
{
"description": "GSN Sample MetaCoin",
"name": "gsn-metacoin",
"version": "0.0.4",
"scripts": {
"test": "truffle test",
"migrate": "truffle migrate",
"lint": "eslint ./",
"lint:fix": "eslint . --fix",
"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 && find app build -ls && yarn run pack",
"update-deployed": "./scripts/update-deployed.js --deployed deployed.json",
"dev": "webpack-dev-server",
"gsn-with-ganache": "./scripts/gsn-with-ganache"
},
"license": "MIT",
"devDependencies": {
"@opengsn/dev": "2.2.2",
"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.12.1",
"html-webpack-plugin": "^3.2.0",
"json-loader": "^0.5.7",
"node-sass": "^4.9.0",
"run-with-testrpc": "^0.3.1",
"sass-loader": "^7.0.3",
"solc": "0.5.16",
"source-map-support": "^0.5.3",
"style-loader": "^0.21.0",
"truffle": "^5.1.46",
"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/contracts": "2.2.2",
"@opengsn/provider": "2.2.2",
"@openzeppelin/contracts": "4.5.0",
"truffle-hdwallet-provider": "^1.0.17"
}
}