-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.26 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
{
"name": "authflow-api",
"version": "1.0.0",
"description": "Enterprise authentication API with role-based access control",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"db:migrate": "node src/database/migrate.js",
"db:seed": "node src/database/seed.js"
},
"keywords": [
"authentication",
"api",
"nodejs",
"jwt",
"docker"
],
"author": "Seu Nome",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"helmet": "^7.0.0",
"joi": "^17.9.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.3.0",
"morgan": "^1.10.0",
"redis": "^4.6.7",
"winston": "^3.9.0"
},
"devDependencies": {
"eslint": "^8.42.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^3.8.1",
"supertest": "^6.3.3"
}
}