-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
45
46
47
{
"name": "nodejs-api-server",
"version": "1.1.1",
"description": "boilerplate nodejs/mongodb server database",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start": "nodemon server.js",
"reset": "rm -rf node_modules",
"reinstall": "rm -rf node_modules && npm i",
"security:fix": "npm audit fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benAkehurst/nodejs-api-server.git"
},
"author": "Ben Akehurst",
"license": "ISC",
"bugs": {
"url": "https://github.com/benAkehurst/nodejs-api-server/issues"
},
"homepage": "https://github.com/benAkehurst/nodejs-api-server#readme",
"devDependencies": {
"nodemon": "^2.0.4"
},
"dependencies": {
"app-root-path": "^3.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"crypto-random-string": "^3.3.0",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.0",
"jest": "^26.4.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mongo-sanitize": "^1.1.0",
"mongoose": "^5.10.3",
"morgan": "^1.10.0",
"nodemailer": "^6.4.17",
"uuid": "^8.3.2",
"winston": "^3.3.3"
}
}