forked from checkpoint-labs/checkpoint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.72 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
59
60
61
62
63
64
65
66
{
"name": "@snapshot-labs/checkpoint",
"version": "0.1.0-beta.40",
"license": "MIT",
"bin": {
"checkpoint": "dist/src/bin/index.js"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"lint": "eslint src/ test/ --ext .ts --fix",
"build": "tsc",
"prepare": "yarn build",
"prepublishOnly": "yarn run lint",
"test": "jest"
},
"eslintConfig": {
"extends": "@snapshot-labs"
},
"prettier": "@snapshot-labs/prettier-config",
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/address": "^5.7.0",
"@ethersproject/keccak256": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/strings": "^5.7.0",
"@graphql-tools/schema": "^8.5.1",
"connection-string": "^4.3.5",
"dataloader": "^2.1.0",
"express-graphql": "^0.12.0",
"graphql": "^16.5.0",
"graphql-fields": "^2.0.3",
"graphql-parse-resolve-info": "^4.12.3",
"json-to-graphql-query": "^2.2.4",
"knex": "^3.1.0",
"object-hash": "^3.0.0",
"pg": "^8.10.0",
"pino": "^8.3.1",
"pino-pretty": "^8.1.0",
"pluralize": "^8.0.0",
"starknet": "^5.19.3",
"yargs": "^17.7.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@snapshot-labs/eslint-config": "^0.1.0-beta.7",
"@snapshot-labs/prettier-config": "^0.1.0-beta.7",
"@types/bn.js": "^5.1.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.11.6",
"@types/pg": "^8.6.6",
"dotenv": "^16.0.1",
"eslint": "^8.28.0",
"jest": "^29.5.0",
"jest-mock-extended": "^3.0.4",
"prettier": "^2.7.1",
"sqlite3": "^5.1.6",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"files": [
"dist/**/*",
"src/**/*"
]
}