-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
53 lines (53 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
48
49
50
51
52
53
{
"name": "mina-payout",
"version": "1.7.0",
"description": "",
"engines": {
"node": ">=18.18.0"
},
"main": "index.js",
"scripts": {
"build": "tsc -p .",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"payout": "ts-node -r dotenv/config src/index.ts",
"resend": "ts-node -r dotenv/config src/resender.ts",
"start": "npm run payout -- -m=0",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^14.18.22",
"@types/object-hash": "^2.2.1",
"@types/reflect-metadata": "^0.1.0",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.2",
"dotenv": "^16.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.3",
"nodemon": "^3.0.2",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"csv": "^6.2.0",
"csv-parse": "^5.5.3",
"decimal.js": "^10.4.3",
"graphql": "^16.5.0",
"help": "^3.0.2",
"inversify": "^6.0.1",
"mina-signer": "^3.0.7",
"object-hash": "^3.0.0",
"pg-promise": "^11.5.5",
"ts-node": "^10.9.1",
"yargs": "^17.5.1"
}
}