-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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
{
"name": "crypto-moneytor",
"version": "1.0.0",
"description": "Servicio modular para monitorear pagos entrantes a wallets cripto con Node.js.",
"main": "dist/app/index.js",
"type": "module",
"scripts": {
"start": "node dist/app/index.js",
"dev": "nodemon --watch src/app --ext ts src/app/index.ts -x tsx",
"build": "tsc",
"test": "NODE_OPTIONS=\"--no-warnings\" node --import tsx ./node_modules/mocha/bin/mocha --config .mocharc.cjs"
},
"dependencies": {
"axios": "^1.4.0",
"dotenv": "^16.4.7",
"express": "^4.18.2",
"redis": "^4.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^4.0.0",
"@types/swagger-ui-express": "^4.1.7",
"@types/ws": "^8.5.13",
"chai": "^5.1.2",
"mocha": "^11.0.1",
"nodemon": "^3.0.1",
"path": "^0.12.7",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"author": {
"name": "Rolando Rodriguez Ortega",
"email": "rolymayo11@gmail.com",
"url": "https://github.com/rrortega"
},
"repository": {
"type": "git",
"url": "https://github.com/rrortega/crypto-moneytor.git"
},
"bugs": {
"url": "https://github.com/rrortega/crypto-moneytor/issues",
"email": "rolymayo11@gmail.com"
},
"homepage": "https://github.com/rrortega/crypto-moneytor#readme",
"license": "MIT"
}