-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 797 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 797 Bytes
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
{
"name": "@realh/server",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "nodemon src/index.js",
"start": "node src/index.js",
"test": "vitest run --passWithNoTests",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint ."
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.4.2",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"firebase-admin": "^13.8.0",
"helmet": "^7.1.0",
"jose": "^5.2.0",
"morgan": "^1.10.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^8.57.0",
"nodemon": "^3.0.2",
"supertest": "^7.2.2",
"vitest": "^1.2.0"
}
}