-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.48 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
47
48
49
50
51
{
"name": "userauth-backend",
"version": "1.0.0",
"description": "Backend to handle user Authentication (Login and Register)",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"",
"lint": "eslint \"src/**/*.js\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ForumLinuxIndonesia/userauth-backend.git"
},
"keywords": [],
"author": "WaxArsatia",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/ForumLinuxIndonesia/userauth-backend/issues"
},
"homepage": "https://github.com/ForumLinuxIndonesia/userauth-backend#readme",
"type": "module",
"dependencies": {
"ajv": "^8.11.2",
"argon2": "^0.30.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.0.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.8.1",
"morgan": "^1.10.0",
"nodemailer": "^6.8.0",
"winston": "^3.8.2"
},
"devDependencies": {
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.0"
},
"imports": {
"#utils/*": "./src/utils/*",
"#controllers/*": "./src/controllers/*",
"#services/*": "./src/services/*",
"#routes/*": "./src/routes/*",
"#models/*": "./src/models/*",
"#validations/*": "./src/validations/*",
"#middlewares/*": "./src/middlewares/*"
}
}