-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 912 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": "my-first-api----node",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon server.js --ignore *.marko.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@eslint/create-config": "^1.1.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mongodb": "^6.8.0",
"mongoose": "^8.5.1",
"nodemon": "^3.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.7.0",
"eslint": "^9.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-xo": "^0.45.0",
"eslint-plugin-eslint-plugin": "^6.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.4.0",
"globals": "^15.8.0"
}
}