-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.11 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": "cloud-guard-server",
"version": "1.0.0",
"description": "The Cloud Guard server that provide API for the client. Made with NodeJS, Express and Swagger.",
"type": "module",
"main": "app.ts",
"scripts": {
"build": "rimraf dist && tsc && cpy public dist && cpy docs dist",
"prod": "cross-env NODE_ENV=production node --experimental-specifier-resolution=node ./dist/app.js",
"start": "node --experimental-specifier-resolution=node ./dist/app.js",
"ec2-start": "/usr/bin/sudo /home/ubuntu/.nvm/versions/node/v18.13.0/bin/node --experimental-specifier-resolution=node ./dist/app.js",
"dev": "nodemon --esm --experimentalSpecifierResolution node ./app.ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Secure-Cloud-Guard/cloud-guard-server"
},
"author": "Dmytro Kagirov",
"license": "ISC",
"bugs": {
"url": "https://github.com/Secure-Cloud-Guard/cloud-guard-server/issues"
},
"homepage": "https://github.com/Secure-Cloud-Guard/cloud-guard-server#readme",
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.511.0",
"@aws-sdk/client-dynamodb": "^3.525.0",
"@aws-sdk/client-s3": "^3.509.0",
"cognito-express": "^3.0.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"graphql": "^16.6.0",
"graphql-request": "^5.2.0",
"helmet": "^7.1.0",
"http-status-codes": "^2.3.0",
"jszip": "^3.10.1",
"morgan": "^1.10.0",
"node-vault": "^0.10.2",
"rotating-file-stream": "^3.2.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.17",
"@types/swagger-ui-express": "^4.1.6",
"cpy": "^11.0.0",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"nodemon": "^2.0.22",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}