-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.04 KB
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
{
"name": "node-mongoose-setup",
"version": "1.0.0",
"description": "Node Mongoose Setup",
"main": "index.js",
"scripts": {
"test": "mocha tests/*.js --exit",
"lint": "eslint .",
"start": "npm run lint && node index.js"
},
"repository": {
"type": "git",
"url": "git@github.com:sunilksamanta/node-mongoose-setup.git"
},
"author": "Sunil Kumar Samanta",
"license": "ISC",
"dependencies": {
"async": "^3.2.2",
"auto-bind": "^4.0.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"crypto-random-string": "^3.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^8.1.3",
"mongoose": "^5.7.7",
"mongoose-unique-validator": "^2.0.3",
"multer": "^1.4.2",
"pluralize": "^8.0.0",
"request": "^2.88.2",
"slugify": "^1.3.5"
},
"devDependencies": {
"eslint": "^7.12.1",
"babel-eslint": "^10.1.0",
"eslint-plugin-import": "^2.22.1"
}
}