-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 744 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 744 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
{
"name": "api-nodejs-express-jwt",
"version": "1.0.0",
"description": "This is a simple API using NodeJS, Express, Typescript and JWT",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"serve": "node dist/index.js"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.19",
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "^20.8.4",
"express": "^4.18.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/bcryptjs": "^2.4.4",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"handlebars": "^4.7.8",
"jsonwebtoken": "^9.0.2"
}
}