-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 954 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
{
"name": "hash-verifier",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:snapshot-labs/hash-verifier.git",
"author": "Snapshot Labs <[email protected]>",
"license": "MIT",
"scripts": {
"verify": "ts-node src/index.ts verify",
"lint": "eslint src/ --ext .js,.ts --fix"
},
"eslintConfig": {
"extends": [
"@snapshot-labs",
"plugin:prettier/recommended"
]
},
"prettier": "@snapshot-labs/prettier-config",
"dependencies": {
"@snapshot-labs/sx": "^0.1.5",
"axios": "^1.7.7",
"starknet": "^6.11.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@snapshot-labs/eslint-config": "^0.1.0-beta.7",
"@snapshot-labs/prettier-config": "^0.1.0-beta.7",
"@types/node": "^22.7.6",
"@types/yargs": "^17.0.33",
"eslint": "^8.28.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"ts-node": "^10.8.1",
"typescript": "^4.9.3"
}
}