-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 877 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
{
"name": "express_api",
"version": "1.2.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start-dev": "nodemon app.js",
"lint": "eslint .",
"prettier": "npx prettier . --check",
"prettier-fix": "npx prettier . --write",
"start-prod": "node app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.19.2",
"mongoose": "^8.3.4",
"prom-client": "^15.1.2",
"response-time": "^2.3.2",
"winston": "^3.13.0"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"globals": "^15.1.0",
"nodemon": "^3.1.0",
"prettier": "3.2.5"
}
}