-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1 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
{
"name": "@berachain/ethers6-solc-helloworld",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint scripts/ --ext .ts,.tsx --no-ignore",
"lint:fix": "eslint scripts/ contracts/ --fix --no-ignore",
"format": "prettier --write \"scripts/**/*.{ts,tsx}\" \"contracts/**/*.{ts,tsx}\"",
"test": "jest",
"clean": "rm -rf node_modules; rm -rf .turbo;",
"deploy:berachain": "echo $RPC_URL; ./node_modules/.bin/tsx scripts/deploy.ts"
},
"keywords": [
"ethers",
"ethers6",
"solc",
"solidity",
"evm"
],
"author": "@codingwithmanny",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.5.9",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"tsup": "^8.0.0",
"typescript": "^5.2.2",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"tsx": "^4.7.0"
},
"dependencies": {
"ethers": "^6.9.1",
"solc": "0.8.23-fixed"
}
}