This repository has been archived by the owner on Aug 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
55 lines (55 loc) · 1.42 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
{
"name": "tutorial-kit",
"version": "1.0.2",
"description": "OpenZeppelin kit containing React, & OpenZeppelin SDK",
"main": "index.js",
"scripts": {
"build-contracts": "openzeppelin compile",
"test": "npx mocha --exit --recursive test",
"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-tutorial"
},
"keywords": [
"openzeppelin",
"truffle",
"react",
"dapp",
"infura",
"metamask",
"web3",
"ganache",
"web3js",
"ethereum",
"smart-contracts"
],
"author": "Ramon Recuero <[email protected]>, Igor Yalovoy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenZeppelin/starter-kit-tutorial/issues"
},
"homepage": "https://github.com/OpenZeppelin/starter-kit-tutorial#readme",
"dependencies": {
"@openzeppelin/contracts-ethereum-package": "^2.4.0",
"@openzeppelin/test-environment": "^0.1.1",
"@openzeppelin/upgrades": "^2.6.0",
"dotenv": "^8.2.0",
"truffle-hdwallet-provider": "^1.0.17"
},
"devDependencies": {
"@openzeppelin/cli": "^2.6.0",
"chai": "^4.2.0",
"husky": "^3.1.0",
"mocha": "^6.2.2",
"openzeppelin-test-helpers": "^0.5.1"
}
}