-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.42 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
{
"name": "trybe-futebol-club",
"version": "1.0.0",
"description": "Ao iniciar este projeto, você concorda com as diretrizes do Código de Ética e Conduta e do Manual da Pessoa Estudante da Trybe.",
"main": "index.js",
"scripts": {
"install:front": "cd ./app/frontend && npm install",
"install:back": "cd ./app/backend && npm install",
"install:apps": "npm run install:front && npm run install:back",
"test": "env $(cat ./app/backend/.env) jest -i --forceExit --verbose",
"test:browser": "SHOW_BROWSER=true npm test",
"test:debug": "DEBUG=true npm test",
"compose:up": "cd app && docker-compose up -d --build",
"compose:down": "cd app && docker-compose down --remove-orphans",
"logs": "cd app && docker-compose logs -f"
},
"author": "Trybe",
"devDependencies": {
"@testing-library/jest-dom": "5.15.0",
"@testing-library/react": "11.2.7",
"@testing-library/user-event": "12.8.3",
"axios": "0.26.0",
"cz-conventional-changelog": "^3.3.0",
"jest": "26.6.0",
"mocha": "9.2.0",
"mysql2": "2.3.3",
"nyc": "15.1.0",
"sequelize": "6.25.5",
"sequelize-cli": "6.4.1"
},
"dependencies": {
"camelcase": "6.3.0",
"commitizen": "^4.3.0",
"http-status-codes": "2.2.0",
"jsonwebtoken": "8.5.1",
"puppeteer": "13.2.0",
"uuid": "8.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}