-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.17 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.17 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
75
76
77
78
79
80
81
82
83
{
"name": "ts-jwt-auth-api",
"version": "1.0.0",
"description": "JWT authentication API using Node.js, Express, and TypeScript",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"type-check": "tsc --noEmit",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"nodejs",
"express",
"typescript",
"jwt",
"authentication",
"api",
"backend"
],
"author": "",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.7.1",
"bcryptjs": "^3.0.2",
"compression": "^1.8.0",
"cors": "^2.8.5",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.15.0",
"morgan": "^1.10.0",
"nodemailer": "^7.0.3",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.11.3",
"prisma": "^5.7.1",
"zod": "^3.25.28"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.8.0",
"@types/cors": "^2.8.18",
"@types/express": "^4.17.22",
"@types/express-rate-limit": "^5.1.3",
"@types/helmet": "^0.0.48",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.2",
"@types/mongoose": "^5.11.96",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.5",
"@types/nodemailer": "^6.4.17",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.16",
"@types/pg": "^8.10.9",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"dotenv": "^16.5.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.4",
"nodemon": "^3.0.2",
"rimraf": "^5.0.5",
"supertest": "^7.1.1",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}