-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
36 lines (36 loc) · 986 Bytes
/
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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "hm-ethereum",
"private": true,
"engines": {
"node": "22.x"
},
"type": "module",
"scripts": {
"tsc": "tsc",
"build": "tsc && swc src --out-dir build --extensions .ts --copy-files",
"lint:javascript": "eslint .",
"lint:javascript:fix": "eslint . --fix"
},
"dependencies": {
"solc": "0.8.28"
},
"devDependencies": {
"@eslint/js": "9.18.0",
"@swc/cli": "0.6.0",
"@swc/core": "1.10.9",
"@types/node": "22.10.10",
"@typescript-eslint/eslint-plugin": "8.21.0",
"@typescript-eslint/parser": "8.21.0",
"eslint": "9.18.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "10.0.1",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-security": "3.0.1",
"globals": "15.14.0",
"prettier": "3.4.2",
"typescript": "5.7.3"
}
}