-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "competitions-backend",
"version": "1.0.0",
"description": "Hemocione Competitions Backend",
"main": "out/app.js",
"scripts": {
"migrate": "npx sequelize-cli db:migrate",
"build": "tsc --build",
"start": "npx sequelize-cli db:migrate && npm run build && node ./out/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Hemocione INC.",
"license": "ISC",
"dependencies": {
"@sentry/node": "^7.31.1",
"@sentry/tracing": "^7.31.1",
"@sequelize/core": "^7.0.0-alpha.10",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/pg": "^8.6.5",
"@types/require-all": "^3.0.3",
"axios": "^0.27.2",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-mongo-sanitize": "^2.2.0",
"helmet": "^5.0.2",
"mongoose": "^6.2.4",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"require-all": "^3.0.0",
"sequelize": "^6.17.0",
"sequelize-cli": "^6.4.1",
"typescript": "^4.7.4",
"validator": "^13.7.0"
},
"devDependencies": {
"nodemon": "^2.0.16"
}
}