-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.09 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@paulrberg/solidity-template",
"description": "To be used when building a new solidity project from scratch",
"version": "1.0.0",
"author": {
"name": "Paul Razvan Berg",
"url": "https://paulrberg.com"
},
"bugs": {
"url": "https://github.com/paulrberg/solidity-template/issues"
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@ethersproject/abstract-signer": "^5.0.1",
"@ethersproject/bignumber": "^5.0.3",
"@ethersproject/wallet": "^5.0.1",
"@nomiclabs/buidler": "^1.3.8",
"@nomiclabs/buidler-ethers": "^2.0.0",
"@nomiclabs/buidler-waffle": "^2.0.0",
"@typechain/ethers-v5": "^0.0.2",
"@types/chai": "^4.2.11",
"@types/fs-extra": "^9.0.1",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"chai": "^4.2.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"ethereum-waffle": "^3.0.1",
"ethers": "^5.0.4",
"fs-extra": "^9.0.1",
"husky": "^4.2.5",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.54",
"shelljs": "^0.8.4",
"shx": "^0.3.2",
"solc": "0.6.10",
"solhint": "^3.0.0",
"solhint-plugin-prettier": "^0.0.4",
"solidity-bytes-utils": "0.0.9",
"solidity-coverage": "^0.7.9",
"ts-generator": "^0.0.8",
"ts-node": "^8.10.2",
"typechain": "^2.0.0",
"typescript": "^3.9.6"
},
"files": [
"/contracts"
],
"homepage": "https://github.com/paulrberg/solidity-template#readme",
"keywords": [
"blockchain",
"ethereum",
"smart-contracts",
"solidity"
],
"license": "LGPL-3.0-or-later",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/paulrberg/solidity-template"
},
"scripts": {
"build": "npm run compile && npm run typechain",
"clean": "buidler clean",
"commit": "git-cz",
"compile": "buidler compile",
"coverage": "buidler coverage --solcoverjs ./.solcover.js --network coverage --temp artifacts --testfiles \"./test/**/*.ts\"",
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
"prettier:list-different": "prettier --config .prettierrc --list-different \"**/*.{js,json,md,sol,ts}\"",
"test": "buidler test",
"typechain": "buidler typechain",
"tsc": "tsc --noEmit",
"ganache": "ganache-cli -q --mnemonic 'clock radar mass judge dismiss just intact mind resemble fringe diary casino' --gasLimit 8000000 --gasPrice 0 -b 1 -e=10000",
"actions:network": "npm run ganache",
"actions:tests": "npm test",
"actions": "concurrently -r -s first -k npm:actions:*"
},
"dependencies": {
"@openzeppelin/contracts": "^3.1.0"
}
}