-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.84 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
{
"name": "careconnect-backend",
"version": "1.0.0",
"main": "src/server.ts",
"scripts": {
"build": "npx tsc -p tsconfig.base.json",
"dev": "nodemon --watch src --ext ts --exec 'npx tsx src/server.ts' ",
"start": "node dist/server.js",
"docker:dev": "docker-compose --env-file .env.development up",
"docker:prod": "docker-compose --env-file .env.production up --build -d",
"test:unit": "vitest run src/test/unit",
"test:watch": "vitest --watch src/test/unit",
"test:ui": "vitest --ui",
"test:e2e": "vitest run src/test/e2e",
"coverage": "vitest run --coverage",
"lint": "eslint",
"lint:fix": "eslint --fix",
"generate": "npx prisma generate"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@types/morgan": "^1.9.9",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^5.0.1",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"pg": "^8.13.1",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.20",
"typescript": "^5.6.3"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.9.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vitest/coverage-v8": "^2.1.5",
"@vitest/ui": "^2.1.5",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"nodemon": "^3.1.7",
"supertest": "^7.0.0",
"tsx": "^4.19.2",
"typescript-eslint": "^8.14.0",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.5"
}
}