-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 2.38 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
62
63
64
65
66
67
68
69
70
{
"name": "prontuario-digital",
"version": "1.0.0",
"description": "Desafio final Chefão Gama Academy que tem por objetivo criar um site que armazena o histórico médico do usuário",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "jest --forceExit",
"testopen": "jest --detectOpenHandles",
"start": "node --unhandled-rejections=strict -r dotenv/config ./dist/infrastructure/app/app.js",
"debug": "set DEBUG=* && tsc && npm run start",
"migrations": "tsc && npx sequelize db:create && npx sequelize db:migrate && node ./dist/infrastructure/persistence/mocks/mocks.js",
"mocks": "tsc && node ./dist/infrastructure/persistence/mocks/mocks.js && node ./dist/infrastructure/persistence/mocks/mocks.js",
"railway": "npx sequelize db:migrate && node ./dist/infrastructure/persistence/mocks/mocks.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thiagodrodrigues/Prontuario-Digital.git"
},
"keywords": [
"typescript",
"express",
"node"
],
"author": "Thiago Rodrigues, Jaqueline Victal, Hellimateas Chaves, Breno Borges, Fernando Dygas",
"license": "ISC",
"bugs": {
"url": "https://github.com/thiagodrodrigues/Prontuario-Digital/issues"
},
"homepage": "https://github.com/thiagodrodrigues/Prontuario-Digital#readme",
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/supertest": "^2.0.12",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "^4.3.4",
"express": "^4.18.2",
"express-winston": "^4.2.0",
"mysql2": "^2.3.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.25.5",
"sequelize-typescript": "^2.1.5",
"winston": "^3.8.2"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@faker-js/faker": "^7.6.0",
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.9",
"@types/validator": "^13.7.10",
"babel-jest": "^29.3.1",
"dotenv": "^16.0.3",
"jest": "^29.3.1",
"jsonwebtoken": "^8.5.1",
"sequelize-cli": "^6.5.2",
"source-map-support": "^0.5.21",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"tslint": "^6.1.3",
"typescript": "^4.8.4"
}
}