-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.5 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.5 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "eas-indexing-service",
"version": "1.0.0",
"description": "EAS Indexing Service for Ethereum Attestation Service",
"main": "index.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "node scripts/test-setup.js",
"test:setup": "node scripts/test-setup.js",
"postinstall": "typechain --target ethers-v5 ./abis/*.json",
"start": "ts-node start.ts",
"dev": "nodemon --exec ts-node start.ts",
"build": "tsc",
"prisma:generate": "SKIP_PRISMA_VERSION_CHECK=true npx prisma generate",
"prisma:push": "npx prisma db push",
"prisma:migrate": "npx prisma migrate dev"
},
"keywords": [
"ethereum",
"attestation",
"eas",
"indexer",
"blockchain"
],
"author": "",
"license": "ISC",
"dependencies": {
"@ethereum-attestation-service/eas-sdk": "0.28.2",
"@prisma/client": "4.13.0",
"@typechain/ethers-v5": "^10.1.0",
"apollo-server": "^3.12.0",
"apollo-server-express": "^3.12.0",
"class-validator": "^0.14.0",
"dayjs": "^1.11.5",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"express": "^4.18.2",
"graphql": "^15.8.0",
"graphql-fields": "^2.0.3",
"p-limit": "^3.0.2",
"prisma": "~4.13.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.9.1",
"type-graphql": "^1.1.1",
"typechain": "^8.1.0",
"typegraphql-prisma": "^0.24.7",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.8.4",
"nodemon": "^3.1.10"
}
}