-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.07 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
60
61
62
63
64
65
66
{
"name": "solidity-ts-dev-stack-example",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run compile && npx buidler typechain",
"clean": "npx buidler clean",
"compile": "npx buidler compile",
"test": "npx buidler test",
"coverage": "npm run build && npx buidler coverage --temp artifacts --network coverage",
"rebuild": "npm run clean && npm run build && npm run test",
"lint": "eslint ./ --fix",
"lint-quick": "pretty-quick --staged --pattern \"**/*.*(ts|tsx)\""
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-quick",
"pre-push": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhlsthrm/solidity-ts-dev-stack-example.git"
},
"author": "rhlsthrm",
"license": "MIT",
"bugs": {
"url": "https://github.com/rhlsthrm/solidity-ts-dev-stack-example/issues"
},
"homepage": "https://github.com/rhlsthrm/solidity-ts-dev-stack-example#readme",
"devDependencies": {
"@nomiclabs/buidler": "^1.3.4",
"@nomiclabs/buidler-ethers": "^1.3.3",
"@nomiclabs/buidler-etherscan": "^1.3.3",
"@nomiclabs/buidler-waffle": "^1.3.5",
"@typechain/ethers-v4": "^1.0.0",
"@typechain/truffle-v4": "^2.0.2",
"@typechain/truffle-v5": "^2.0.2",
"@typechain/web3-v1": "^1.0.0",
"@types/chai": "^4.2.12",
"@types/mocha": "^7.0.2",
"@types/node": "^14.6.0",
"buidler-typechain": "0.1.1",
"chai": "^4.2.0",
"ethereum-waffle": "^2.5.1",
"ethers": "^4.0.47",
"husky": "^4.2.5",
"solidity-coverage": "^0.7.5",
"ts-generator": "0.0.8",
"ts-node": "^8.10.2",
"typechain": "^2.0.0",
"typescript": "^3.9.7",
"@openzeppelin/contracts": "^3.1.0",
"@openzeppelin/upgrades": "^2.8.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"dotenv": "^8.2.0"
}
}