-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.67 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": "cluster-rewarding",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"dependencies": {
"@hiveio/dhive": "^1.2.6",
"axios": "^1.3.5",
"cids": "^1.1.9",
"dotenv": "^16.0.1",
"ipfs-http-client": "^60.0.0",
"it-pushable": "^1.4.2",
"moment": "^2.29.3",
"mongodb": "^4.7.0",
"mongoose": "^7.0.3",
"multiformats": "^11.0.2",
"node-schedule": "^2.1.1",
"p-queue": "^7.2.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5",
"winston": "^3.6.0"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"concurrently": "^7.6.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"nodemon": "^2.0.20",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.7.0-dev.20220506"
},
"scripts": {
"build": "tsc -p ./tsconfig.json",
"dev": "nodemon --exec \"node --experimental-specifier-resolution=node --loader ts-node/esm\" src/index.ts",
"dev-full": "concurrently \"npm run dev\" \"npm run start-workers\"",
"lint:fix": "eslint --fix \"src/**/*.{ts,tsx}\"",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"test:report": "sensible-browser ./coverage/lcov-report/index.html",
"test": "jest --coverage",
"ts-node": "nodemon --exec \"node --experimental-specifier-resolution=node --loader ts-node/esm\"",
"start:client": "node --experimental-specifier-resolution=node dist/client"
},
"author": "",
"license": "ISC"
}