forked from Fluxora-Org/Fluxora-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 888 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 888 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
35
36
37
{
"name": "fluxora-backend",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"lint": "eslint src --ext .ts,.js",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts"
},
"dependencies": {
"express": "^4.18.2",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.3",
"zod": "^4.3.6",
"pg": "^8.11.3",
"ws": "^8.14.2",
"node-pg-migrate": "^7.6.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.19.39",
"@types/supertest": "^6.0.2",
"@types/ws": "^8.18.1",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"tsx": "^4.7.0",
"typescript": "^5.9.3",
"vitest": "^4.1.5",
"ws": "^8.20.0"
}
}