-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "starter-kit-gsn",
"version": "1.0.2",
"description": "An OpenZeppelin starter kit focused on GSN.",
"main": "index.js",
"scripts": {
"build-contracts": "openzeppelin compile",
"test": "echo \"Error: no test specified\" && exit 1",
"pre-push": "cd client && npm run pre-push",
"pre-commit": "cd client && npm run pre-commit"
},
"husky": {
"hooks": {
"pre-push": "npm run pre-push",
"pre-commit": "npm run pre-commit"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenZeppelin/starter-kit-gsn"
},
"keywords": [
"openzeppelin",
"truffle",
"react",
"dapp",
"infura",
"metamask",
"web3",
"ganache",
"web3js",
"ethereum",
"smart-contracts"
],
"author": "Igor Yalovoy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenZeppelin/starter-kit-gsn/issues"
},
"homepage": "https://github.com/OpenZeppelin/starter-kit-gsn#readme",
"dependencies": {
"@openzeppelin/contracts-ethereum-package": "^2.4.0",
"@openzeppelin/upgrades": "^2.5.3",
"dotenv": "^6.2.0",
"truffle-hdwallet-provider": "^1.0.3"
},
"devDependencies": {
"@openzeppelin/cli": "^2.5.3",
"@openzeppelin/gsn-helpers": "^0.1.9",
"chai": "^4.2.0",
"husky": "^3.0.4",
"openzeppelin-test-helpers": "^0.4.3"
}
}