-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 769 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 769 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
32
{
"name": "express-rest-api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"star": "node -r dotenv/config app.js",
"start:dev": "nodemon -r dotenv/config app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.24.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.14.0",
"mongoose": "^6.1.3",
"mongoose-unique-validator": "^3.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"colors": "^1.4.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"nodemon": "^2.0.15"
},
"type": "module"
}