-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.47 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
{
"name": "@0xsequence/solidity-deployer",
"version": "0.1.1",
"description": "A workflow for deploying solidity contracts",
"keywords": [
"solidity",
"smart-contracts",
"blockchain",
"ethereum",
"deploy"
],
"files": [
"dist/src",
"src"
],
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"repository": "https://github.com/0xsequence/solidity-deployer.git",
"bugs": {
"url": "https://github.com/0xsequence/solidity-deployer/issues"
},
"homepage": "https://github.com/0xsequence/solidity-deployer#README.md",
"license": "Apache-2.0",
"private": false,
"scripts": {
"build": "tsc -p .",
"test": "jest",
"lint:init": "husky install",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@tenderly/sdk": "^0.1.14",
"axios": "^1.3.5",
"ethers": "^5.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"dotenv": "^16.0.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.7",
"solc": "^0.8.19",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"lint-staged": {
"**/*.ts": "eslint --fix",
"**/*.{js,ts,md,yaml,json}": "prettier --write"
}
}