forked from santiaguf/node-todo-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
41
42
43
44
{
"name": "node-todo-app",
"version": "1.0.0",
"description": "Todo App for interview process",
"main": "server.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:fix:file": "eslint --fix "
},
"keywords": [
"Express",
"restAPI",
"MongoDB",
"Mongoose",
"Todo"
],
"author": "Santiago Bernal",
"license": "MIT",
"dependencies": {
"bl": "^5.0.0",
"bluebird": "^3.7.2",
"body-parser": "^1.20.0",
"dotenv": "^16.0.2",
"ejs": "^3.1.8",
"express": "^4.18.1",
"mongoose": "^6.6.2",
"path-parse": "^1.0.7",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/eslint-parser": "^7.19.1",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"nodemon": "^2.0.20"
}
}