forked from 0xFlicker/ordinals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.04 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
{
"name": "@0xflick/app-graphql-backend",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"license": "MIT",
"scripts": {
"start": "node --loader ts-node/esm src/index.ts | bunyan",
"start:localstack": "AWS_ACCESS_KEY_ID=test AWS_SECRET_ACCESS_KEY=test node --loader ts-node/esm src/index.ts | bunyan",
"dev:localstack": "AWS_ACCESS_KEY_ID=test AWS_SECRET_ACCESS_KEY=test nodemon --watch src --exec \"node --loader ts-node/esm --inspect\" src/index.ts | bunyan",
"dev": "nodemon --watch src --exec \"node --loader ts-node/esm --inspect\" src/index.ts | bunyan"
},
"nodemonConfig": {
"delay": 2000
},
"devDependencies": {
"@types/node": "^20.4.0",
"bunyan": "^1.8.15",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@0xflick/mempool.js": "^2.3.10",
"@graphql-tools/load-files": "^7.0.0",
"apollo-server": "^3.12.0",
"apollo-server-core": "^3.12.0",
"bottleneck": "^2.19.5",
"dotenv": "^16.3.1",
"graphql": "^16.7.1"
}
}