-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.46 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": "create-express-js-template",
"version": "1.0.0",
"description": "This is a Starter For Express Js Backend With Javascript.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"start": "node src/index.js",
"dev": "nodemon src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BoBsRepository/create-express-js-template.git"
},
"author": "Puskar Roy",
"license": "MIT",
"bugs": {
"url": "https://github.com/BoBsRepository/create-express-js-template/issues"
},
"homepage": "https://github.com/BoBsRepository/create-express-js-template#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"morgan": "^1.10.0",
"nodemon": "^3.0.2",
"validator": "^13.11.0",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.1.1"
}
}