-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.53 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.53 KB
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
{
"name": "brainbytes-api",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"compose": "docker-compose -f dev.compose.yaml up",
"compose:build": "docker-compose -f dev.compose.yaml up --build",
"compose:down": "docker-compose -f dev.compose.yaml down",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"build": "tsc",
"clean": "rmdir /s /q dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.10.0",
"dependencies": {
"@google/genai": "^1.5.1",
"bcryptjs": "^3.0.2",
"cookie-parser": "^1.4.7",
"express": "^5.1.0",
"express-validator": "^7.2.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.17.0",
"mongoose": "^8.16.0",
"morgan": "^1.10.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/node": "^24.0.3",
"@types/supertest": "^6.0.3",
"dotenv": "^16.5.0",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"jest": "^30.0.2",
"mongodb-memory-server": "^10.1.4",
"supertest": "^7.1.1",
"ts-jest": "^29.4.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1"
}
}