forked from rsksmart/rif-wallet-services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.08 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "rif-wallet-services",
"version": "1.0.9",
"description": "RIF Wallet Services",
"main": "lib/index.js",
"scripts": {
"start": "nodemon",
"start:prod": "npm run build && node lib/index.js",
"test": "npx jest --coverage",
"test:watch": "npx jest --coverage --watch",
"test:ci": "npx jest --coverage --ci",
"build": "rimraf ./lib && npx tsc",
"lint": "npx eslint ./src ./test --ext .json,.js,.ts",
"lint:fix": "npx eslint ./src ./test --ext .json,.js,.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsksmart/rif-wallet-services.git"
},
"keywords": [
"wallet",
"services"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/rsksmart/rif-wallet-services/issues"
},
"homepage": "https://github.com/rsksmart/rif-wallet-services#readme",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/opossum": "^8.1.6",
"@types/supertest": "^2.0.12",
"@types/yup": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.0.0",
"jest-junit": "^12.0.0",
"nodemon": "^3.0.2",
"rimraf": "^3.0.2",
"socket.io-client": "^4.7.5",
"supertest": "^6.1.6",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"typescript": "~4.8.3"
},
"dependencies": {
"@rsksmart/rsk-contract-metadata": "^1.0.15",
"@rsksmart/rsk-utils": "^1.1.0",
"axios": "^1.6.2",
"axios-cache-interceptor": "^1.6.2",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"ethers": "^6.13.1",
"express": "^4.18.2",
"node-cache": "^5.1.2",
"opossum": "^8.1.3",
"rate-limiter-flexible": "^4.0.1",
"socket.io": "^4.7.5",
"swagger-ui-express": "^4.5.0",
"yup": "^1.2.0"
}
}