-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.95 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
{
"name": "Socios",
"version": "1.0.0",
"main": "index.js",
"description": "Socios Transaction API",
"license": "MIT",
"type": "module",
"scripts": {
"start": "NODE_ENV=development & nodemon --experimental-json-modules src/index.js --trace-warnings",
"docker": "NODE_ENV=docker nodemon --experimental-json-modules src/index.js --trace-warnings",
"docker:debug": "NODE_ENV=docker nodemon --inspect --experimental-json-modules src/index.js --trace-warnings",
"test": "cross-env NODE_ENV=test jest",
"test:mocha": "cross-env NODE_ENV=test mocha --require @babel/register test"
},
"dependencies": {
"@babel/cli": "^7.18.10",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/register": "^7.18.9",
"@hapi/boom": "^10.0.0",
"async": "^3.2.4",
"axios": "^0.27.2",
"babel-node": "^0.0.1-security",
"babel-plugin-transform-import-meta": "^2.2.0",
"body-parser": "^1.20.0",
"chai-http": "^4.3.0",
"compression": "^1.7.4",
"connect-redis": "^6.1.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"ether": "^0.0.9",
"ethers": "^5.6.9",
"express": "^4.18.1",
"express-session": "^1.17.3",
"http-status-codes": "^2.2.0",
"jest": "^28.1.3",
"jest-config": "^28.1.3",
"lodash": "^4.17.21",
"mocha": "^10.0.0",
"morgan": "^1.10.0",
"node-fetch": "2.6.6",
"redis": "^4.2.0",
"redis-mock": "^0.56.3",
"serve-favicon": "^2.5.0",
"should": "^13.2.3",
"supertest": "^6.2.4",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.5.0",
"winston": "^3.8.1",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@types/chai": "^4.3.3",
"babel-jest": "^28.1.3",
"chai": "^4.3.6",
"nodemon": "^2.0.19",
"response-time": "^2.3.2",
"testcontainers": "^8.12.0"
},
"moduleDirectories": [
"node_modules",
"src"
]
}