-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 896 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
36
{
"name": "express-crud",
"version": "0.1.0",
"description": "A CRUD API using Express",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sohrabtaee/express-crud.git"
},
"author": "Sohrab Taee",
"license": "ISC",
"bugs": {
"url": "https://github.com/sohrabtaee/express-crud/issues"
},
"homepage": "https://github.com/sohrabtaee/express-crud#readme",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.4.1",
"http-errors": "^1.7.3",
"mongoose": "^5.9.15"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"nodemon": "^2.0.4",
"prettier": "^2.0.5"
}
}