-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "social-network-backend",
"version": "1.0.0",
"description": "Backend for a social network built with Node.js, Express, and Prisma",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"start": "node dist/index.js",
"build": "tsc && prisma generate",
"migrate": "prisma migrate dev",
"generate": "prisma generate",
"db-push": "prisma db push",
"db-seed": "ts-node prisma/seed.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Haibu-Project/haibu-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Haibu-Project/haibu-backend/issues"
},
"homepage": "https://github.com/Haibu-Project/haibu-backend#readme",
"dependencies": {
"@prisma/client": "^6.4.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"nodemon": "^3.1.9",
"socket.io": "^4.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.8",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"prisma": "^6.4.0",
"ts-node-dev": "^2.0.0"
}
}