-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "express-jwt",
"version": "1.0.0",
"description": "Basic express CRUD with authorization",
"main": "index.js",
"type": "commonjs",
"scripts": {
"start": "node index.js",
"test": "jest",
"dev": "nodemon index.js",
"docker:build": "docker build -t ghcr.io/ph3487/express-crud:latest .",
"docker:push": "docker push ghcr.io/ph3487/express-crud:latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PH3487/express-crud.git"
},
"keywords": [
"express",
"basic",
"jsonwebtoken",
"jwt",
"crud"
],
"author": "PH3487",
"license": "ISC",
"bugs": {
"url": "https://github.com/PH3487/express-crud/issues"
},
"homepage": "https://github.com/PH3487/express-crud#readme",
"dependencies": {
"@types/express": "^4.17.21",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-validator": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"mysql2": "^3.11.3",
"supertest": "^7.0.0"
},
"devDependencies": {
"@types/node": "^22.6.1",
"jest": "^29.7.0"
}
}