-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.25 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
{
"name": "eduapi",
"version": "1.0.0",
"main": "src/server.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=development nodemon --legacy-watch src/server.ts",
"start": "cross-env NODE_ENV=production node dist/server.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:check": "prettier . --check",
"format:fix": "prettier . --fix",
"init:prisma": "npx prisma init",
"migratedev:prisma": "dotenv -e .env.development -- npx prisma migrate dev",
"migrateprod:prisma": "dotenv -e .env.production -- npx prisma migrate dev",
"generate:prisma": "npx prisma generate"
},
"keywords": [],
"author": "Asmare",
"license": "ISC",
"description": "",
"dependencies": {
"@prisma/client": "^6.8.2",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"colorette": "^2.0.20",
"compression": "^1.8.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv-flow": "^4.1.0",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"helmet": "^8.1.0",
"hpp": "^0.2.3",
"html-to-text": "^9.0.5",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^7.0.3",
"prisma": "^6.8.2",
"source-map-support": "^0.5.21",
"winston": "^3.17.0",
"zod": "^3.25.28"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.8.0",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.18",
"@types/express": "^5.0.2",
"@types/helmet": "^0.0.48",
"@types/hpp": "^0.2.6",
"@types/html-to-text": "^9.0.4",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.15.21",
"@types/nodemailer": "^6.4.17",
"@types/source-map-support": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"cross-env": "^7.0.3",
"dotenv-cli": "^8.0.0",
"globals": "^16.2.0",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}