-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 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
{
"name": "storage-actions",
"version": "1.0.0",
"description": "service for storage actions",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node service.js",
"dev": "nodemon service.js",
"test": "jest --watchAll",
"swagger-autogen": "node swagger.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elemetorkamatech2/storage-actions.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/elemetorkamatech2/storage-actions/issues"
},
"homepage": "https://github.com/elemetorkamatech2/storage-actions#readme",
"dependencies": {
"amqplib": "^0.10.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"expect": "^29.5.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.0",
"keycloak-connect": "^21.1.1",
"mongodb": "^5.5.0",
"mongoose": "^7.2.4",
"nodemon": "^2.0.22",
"pino": "^8.14.1",
"request": "^2.88.2",
"swagger-autogen": "^2.23.1",
"swagger-ui-express": "^4.6.3",
"validatorjs": "^3.22.1",
"whois": "^2.14.0"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"babel-jest": "^29.5.0",
"chai": "^4.3.7",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"jest": "^29.5.0",
"mocha": "^10.2.0",
"supertest": "^6.3.3"
},
"jest": {
"transform": {
"^.+\\.m?js$": "babel-jest"
}
}
}