-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 2.45 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
{
"name": "project-template",
"version": "1.0.0",
"description": "A template with all preferred configs",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"eslint": "eslint --ext .js --ignore-path .gitignore .",
"prettier:check": "prettier --check . --config .prettierrc",
"prettier:fix": "prettier --write . --config .prettierrc",
"lint": "yarn eslint && yarn prettier:check",
"test:all": "yarn hardhat test",
"test": "yarn test:all test/functions.test.js",
"test:gas": "yarn test:all test/gas.test.js",
"f:test": "yarn prettier:fix && yarn test && yarn lint",
"f:test:gas": "yarn prettier:fix && yarn test:gas && yarn lint",
"compile": "yarn prettier:fix && yarn hardhat compile",
"clean": "yarn prettier:fix && yarn lint",
"coverage": "yarn hardhat coverage --testfiles \"test/*.test.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/peppersec/project-template.git"
},
"author": "peppersec.com <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/peppersec/project-template/issues"
},
"homepage": "https://github.com/peppersec/project-template#readme",
"dependencies": {
"@openzeppelin/contracts": "3.2.0",
"@openzeppelin/hardhat-upgrades": "1.10.0",
"@uniswap/v3-core": "https://github.com/Tisamenus/uniswap-v3-core",
"@uniswap/v3-periphery": "https://github.com/Tisamenus/uniswap-v3-periphery",
"tornado-lottery-period": "https://github.com/Tisamenus/tornado-lottery-period.git#production",
"tornado-anonymity-mining": "^2.1.5",
"tornado-cli": "^0.0.1",
"tornado-governance": "^1.0.3",
"tornado-trees": "^0.0.11"
},
"devDependencies": {
"@ethersproject/testcases": "^5.4.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"hardhat": "2.6.0",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-log-remover": "^2.0.2",
"hardhat-spdx-license-identifier": "^2.0.3",
"hardhat-storage-layout": "^0.1.6",
"mocha-lcov-reporter": "^1.3.0",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.17"
}
}