-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "y",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node ./server.js",
"start:dev": "cross-env NODE_ENV=development nodemon ./server.js",
"lint": "eslint **/*.js",
"lint:fix": "eslint --fix **/*.js"
},
"author": "",
"license": "ISC",
"keywords": [],
"description": "",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"gravatar": "^1.8.2",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.3.0",
"mongoose": "^8.0.3",
"morgan": "^1.10.0",
"nodemailer": "^6.9.7",
"query-string": "^8.1.0",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.2"
}
}