-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 971 Bytes
/
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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "src/main.ts",
"scripts": {
"build": "npx tsc",
"start": "node /dist/src/main.ts",
"serve": "nodemon src/main.ts",
"pretest": "npx prettier --check . && npx eslint src --max-warnings 0 && tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.2.0",
"@sentry/node": "^7.64.0",
"@sentry/profiling-node": "^1.1.2",
"express": "^4.18.2",
"helmet": "^7.0.0",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.5",
"dotenv": "^16.3.1",
"express-async-errors": "^3.1.1",
"express-oauth2-jwt-bearer": "^1.5.0",
"jsonwebtoken": "^9.0.2",
"prisma": "^5.2.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2",
"ws": "^8.13.0"
}
}