-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.16 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "contracts",
"version": "1.0.0",
"description": "LongTerm Finance Smart Contracts",
"main": "index.js",
"repository": "https://github.com/longterm-finance/contracts",
"author": "LongTerm Finance",
"license": "MIT",
"private": true,
"dependencies": {
"@chainlink/contracts": "^0.2.1",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.5",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^3.4.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/user-event": "^12.8.3",
"@truffle/hdwallet-provider": "^1.0.37",
"@typechain/ethers-v5": "^7.0.1",
"@types/chai": "^4.2.21",
"@types/ethereumjs-util": "^6.1.0",
"@types/jest": "^27.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.10",
"authereum": "^0.0.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
"ethereum-waffle": "^3.4.0",
"ethereumjs-util": "^6.2.1",
"hardhat": "^2.6.1",
"hardhat-deploy": "^0.9.0",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-tracer": "^1.0.0-alpha.6",
"mocha": "^8.1.2",
"moment": "^2.29.1",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solc": "^0.7.5",
"solhint": "^1.0.10",
"solidity-coverage": "^0.6.7",
"solidity-docgen": "^0.5.13",
"source-map-support": "^0.5.19",
"truffle": "^5.1.67",
"truffle-hdwallet-provider-privkey": "^0.0.4",
"ts-generator": "^0.1.1",
"typechain": "^5.1.2",
"typescript": "^4.4.2",
"uuid": "^3.4.0",
"web-vitals": "^1.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"buildContracts": "npm run typechain",
"testContracts": "npx hardhat test",
"compile": "npx hardhat compile",
"coverage": "npx hardhat coverage",
"typechain": "npx hardhat compile && typechain --outDir typechain --target ethers 'artifacts/*.json'",
"deploy": "npx hardhat deploy",
"verify": "npx hardhat verify etherscan-verify",
"docgen": "yarn run solidity-docgen --solc-module solc-0.7"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@typescript-eslint/parser": "^4.30.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-flowtype": "^5.9.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"hardhat-typechain": "^0.3.5",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"ts-node": "^10.2.1",
"typechain-target-ethers": "^1.0.4"
}
}