-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.5 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
{
"name": "prueba_bittome",
"version": "1.0.0",
"description": "Prueba técnica de Bit2me",
"main": "src/main.js",
"scripts": {
"start": "node -r dotenv/config src/main.js",
"start:docker": "docker run -p 80:8080 --name bit2me --env-file .env --network bit2me-network -d diegomgar/bit2me-web-app",
"deploy:frontend": "aws s3 sync frontend s3://bit2me-web-app --delete",
"build:backend": "docker build -t diegomgar/bit2me-web-app .",
"deploy:backend": "docker push diegomgar/bit2me-web-app",
"test": "mocha -r dotenv/config test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DiegoMGar/prueba_bittome.git"
},
"type": "module",
"author": "Diego Maroto",
"license": "ISC",
"bugs": {
"url": "https://github.com/DiegoMGar/prueba_bittome/issues"
},
"homepage": "https://github.com/DiegoMGar/prueba_bittome#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"mongoose": "^5.9.21",
"node-fetch": "^2.6.0",
"nodemailer": "^6.4.10",
"redis": "^3.0.2",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/express-ws": "^3.0.0",
"@types/mongoose": "^5.7.29",
"@types/node-fetch": "^2.5.7",
"@types/nodemailer": "^6.4.0",
"@types/redis": "^2.8.23",
"chai": "^4.2.0",
"mocha": "^8.0.1"
}
}