-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.13 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
{
"name": "squid-evm-template",
"private": true,
"scripts": {
"build": "rm -rf lib/ && tsc",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"format": "prettier --write 'src/**/*.{js,ts,tsx}'"
},
"dependencies": {
"@subsquid/evm-processor": "^1.8.5",
"@subsquid/graphql-server": "^4.3.1",
"@subsquid/typeorm-migration": "^1.2.2",
"@subsquid/typeorm-store": "^1.2.4",
"@subsquid/util-internal-json": "^1.2.1",
"dotenv": "^16.1.4",
"ethers": "^6.5.1",
"pg": "^8.11.0",
"typeorm": "^0.3.16"
},
"devDependencies": {
"@subsquid/evm-typegen": "^3.2.3",
"@subsquid/squid-gen-evm": "^1.2.0",
"@subsquid/typeorm-codegen": "^1.3.2",
"@types/node": "^18.16.17",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}