-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.28 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
{
"name": "navbrix-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/index.ts",
"build": "tsc && npm run sentry:sourcemaps",
"migrate": "npx prisma migrate resolve --applied 0_init",
"generate-prisma-client": "npx prisma generate",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org andres-pradilla --project navbrix-api ./dist && sentry-cli sourcemaps upload --org andres-pradilla --project navbrix-api ./dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.9.1",
"@sentry/cli": "^2.28.6",
"@sentry/node": "^7.100.1",
"@sentry/profiling-node": "^7.100.1",
"config": "^3.3.10",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"puppeteer": "^21.6.1",
"swagger-ui-express": "^5.0.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.4"
},
"devDependencies": {
"@types/config": "^3.3.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.5",
"@types/swagger-ui-express": "^4.1.6",
"nodemon": "^3.0.2",
"prisma": "^5.9.1",
"typescript": "^5.3.3"
}
}