-
Notifications
You must be signed in to change notification settings - Fork 194
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "solidity-examples",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "https://github.com/yuichiroaoki/solidity-examples.git",
"author": "yuichiroaoki",
"license": "MIT",
"scripts": {
"server": "nodemon src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"build": "tsc",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"devDependencies": {
"@types/jest": "latest",
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/v3-sdk": "^3.8.1",
"husky": "latest",
"jest": "latest",
"lint-staged": "latest",
"nodemon": "latest",
"pinst": "latest",
"prettier": "latest",
"ts-jest": "latest"
},
"dependencies": {
"@openzeppelin/contracts": "latest",
"@types/node": "latest",
"axios": "latest",
"console-table-printer": "latest",
"dotenv": "latest",
"ethers": "^5.5.3",
"log4js": "^6.4.6",
"ts-node": "latest",
"typescript": "latest"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{js,json,md,sol,ts}": [
"prettier --config .prettierrc.json --write --ignore-unknown"
]
}
}