forked from Anovas001/beparty-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.06 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.06 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "beparty-server",
"version": "1.0.0",
"description": "Backend API for BePARTy - Platform for nightclubs and DJs with token-based song voting",
"main": "dist/server.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules -r tsconfig-paths/register src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"test": "jest",
"test:watch": "jest --watch",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:seed": "ts-node --project prisma/tsconfig.json prisma/seed.ts",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f"
},
"keywords": [
"nodejs",
"express",
"typescript",
"prisma",
"postgresql",
"socket.io",
"nightclub",
"dj",
"voting"
],
"author": "BePARTy Team",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.4.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^5.0.0-beta.1",
"express-rate-limit": "^7.1.3",
"helmet": "^7.0.0",
"pino": "^8.15.0",
"pino-http": "^8.5.0",
"pino-pretty": "^10.2.0",
"socket.io": "^4.7.2",
"swagger-ui-express": "^5.0.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.3",
"@types/swagger-ui-express": "^4.1.4",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"prisma": "^5.4.2",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
}
}