-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 911 Bytes
/
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
{
"name": "ecommerce",
"version": "0.0.1",
"description": "",
"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 .",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.21.0",
"mongoose": "^8.7.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@types/compression": "^1.7.5",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"compression": "^1.7.4",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"helmet": "^8.0.0",
"morgan": "^1.10.0",
"prettier": "^3.3.3",
"husky": "^8.0.0"
}
}