-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1.22 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
{
"name": "jiffy-explorer",
"version": "1.0.0",
"description": "An explorer for account abstraction",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd server && npm install && npx tsc && cd ../client && npm install --force && npm run build",
"graph-build": "cd server && npm run graph-build",
"quick-build": "cd client && npm run build",
"start": "node server/dist/server.js",
"dev": "cd ./server && concurrently \"npx tsc --watch\" \"nodemon -q dist/server.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/lazycoder1/jiffy-explorer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lazycoder1/jiffy-explorer/issues"
},
"homepage": "https://github.com/lazycoder1/jiffy-explorer#readme",
"dependencies": {
"@typechain/ethers-v5": "^10.2.0",
"axios": "^1.2.0",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"ethereum-input-data-decoder": "^0.4.2",
"ethers": "^5.7.2",
"express": "^4.18.2"
},
"devDependencies": {
"@graphprotocol/client-cli": "2.2.16",
"@types/express": "^4.17.14",
"@types/node": "^18.11.13",
"tslint": "^6.1.3",
"typescript": "^4.9.4"
}
}