-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 818 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 818 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
{
"name": "node-jwt-auth-template-ts",
"version": "1.0.0",
"description": "Basic template you can use in your Node Backends for JWT authentication - TypeScript edition.",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon dist/index.js",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Lokesh Kumar",
"license": "MIT",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.15",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "^18.11.18",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.6.3",
"typescript": "^4.9.4",
"zod": "^3.20.2"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}