-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "mina-payouts-data-provider",
"version": "2.5.2",
"description": "Data provider API for mina-pool-payouts",
"main": "index.js",
"scripts": {
"build": "tsc --outDir dist",
"dev": "nodemon --exec ts-node src/index.ts | pino-pretty",
"dev-sl": "nodemon --exec ts-node src/stakingLedgers/api.ts",
"lint": "eslint '*/**/*.{js,ts}' --quiet --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "jrwashburn,pabloabadcarmona",
"license": "Apache-2.0",
"dependencies": {
"@apollo/client": "^3.9.6",
"cors": "^2.8.5",
"decimal.js": "^10.4.3",
"dotenv": "^16.4.1",
"express": "4.19.2",
"express-basic-auth": "^1.2.1",
"express-rate-limit": "^7.1.5",
"graphql": "^16.8.1",
"helmet": "^7.1.0",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"pg": "^8.11.3",
"pino-http": "^10.1.0",
"response-time": "^2.3.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.11.0",
"@types/response-time": "^2.3.8",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"nodemon": "^3.0.3",
"pino-pretty": "^11.0.0",
"ts-node": "^10.9.2"
}
}