-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 2.04 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
{
"name": "semanajsexpert-6.0",
"version": "1.0.0",
"description": "Seja bem vindo(a) à sexta Semana Javascript Expert. Este é o código inicial para iniciar nossa jornada.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "set LOG_DISABLED=true && set NODE_OPTIONS=--experimental-vm-modules --no-warnings && npx jest --runInBand --no-cache",
"test:watch": "set LOG_DISABLED=true && set NODE_OPTIONS=--experimental-vm-modules --no-warnings && npx jest --runInBand --no-cache --watchAll",
"test:coverage": "set LOG_DISABLED=true && set NODE_OPTIONS=--experimental-vm-modules --no-warnings && npx jest --runInBand --no-cache --coverage tests/unit",
"test:docker": "LOG_DISABLED=true NODE_OPTIONS=--experimental-vm-modules jest --no-cach --watchAll",
"test:docker:coverage": "LOG_DISABLED=true NODE_OPTIONS=--experimental-vm-modules jest --no-cache --coverage tests/unit",
"test:docker:e2e": "LOG_DISABLED=true NODE_OPTIONS=--experimental-vm-modules --no-warnings npx jest --runInBand --no-cache tests/e2e",
"start": "node server/index.js",
"start-watch": "nodemon -L server/index.js",
"start-watch-docker": "docker-compose up --build start-watch",
"start-docker-test-e2e": "docker-compose up --build test:docker:e2e",
"start-docker-test": "docker-compose up --build test",
"start-docker-test-coverage": "docker-compose up --build test:docker:coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GustavoASCarvalho/SemanaJSExpert-6.0.git"
},
"engines": {
"node": "17.7.1"
},
"keywords": [],
"author": "Gustavo Alexandre da Silva Carvalho",
"license": "ISC",
"bugs": {
"url": "https://github.com/GustavoASCarvalho/SemanaJSExpert-6.0/issues"
},
"homepage": "https://github.com/GustavoASCarvalho/SemanaJSExpert-6.0#readme",
"devDependencies": {
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"portfinder": "^1.0.28",
"supertest": "^6.2.2"
},
"dependencies": {
"pino": "^7.8.0",
"pino-pretty": "^7.5.3",
"throttle": "^1.0.3"
}
}