-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.9 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.9 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "template-express-base",
"version": "1.0.0",
"description": "Base repo to start your express project",
"main": "index.js",
"type": "module",
"imports": {
"#db": "./db/index.js",
"#cors": "./cors/index.js",
"#errors": "./errors/index.js",
"#routes": "./routes/index.js",
"#models": "./models/index.js",
"#controllers": "./controllers/index.js",
"#validators": "./validators/index.js",
"#middlewares": "./middlewares/index.js",
"#swagger": "./swagger/index.js"
},
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"prepare": "husky || true",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"tree": "tree -a -L 3 -I 'node_modules|.git|.husky'"
},
"lint-staged": {
"**/*": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/SadiqOnGithub/template-express-base.git"
},
"keywords": [
"express",
"template",
"base",
"express-template",
"express-base-repo"
],
"author": "Syed Sadiq Ali",
"license": "ISC",
"bugs": {
"url": "https://github.com/SadiqOnGithub/template-express-base/issues"
},
"homepage": "https://github.com/SadiqOnGithub/template-express-base#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.3"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"nodemon": "^3.1.4",
"prettier": "^3.3.3"
}
}