-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 795 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 795 Bytes
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
{
"name": "@so-xzen/api",
"version": "1.0.0",
"description": "My first Api express and mongodb",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "npx eslint ./src/**/*.mjs && node index.mjs ",
"prod": "node index.mjs production",
"lint": "npx eslint ./src/**/*.mjs"
},
"author": "Cyril Vimard",
"license": "ISC",
"dependencies": {
"better-validator": "^2.1.9",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.18.2",
"express-rate-limit": "^7.5.0",
"helmet": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.2.4"
},
"devDependencies": {
"eslint": "^8.42.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5"
}
}