-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "portfo",
"version": "0.0.5",
"description": "",
"main": "index.js",
"scripts": {
"test": "DB=mongodb://localhost/portfo_test jest --watchAll --verbose --coverage --detectOpenHandles",
"docker-test": "jest --watchAll --verbose --coverage --detectOpenHandles",
"watch": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calvinsomething/portfo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/calvinsomething/portfo/issues"
},
"homepage": "https://github.com/calvinsomething/portfo#readme",
"dependencies": {
"axios": "^0.21.1",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"hbs": "^4.1.2",
"helmet": "^4.6.0",
"joi": "^17.4.1",
"lodash": "^4.17.21",
"mongoose": "^5.13.3",
"mongoose-morgan": "^1.0.17",
"nodemailer": "^6.6.3",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"redis": "^3.1.2",
"winston": "^3.3.3",
"winston-mongodb": "^5.0.7"
},
"devDependencies": {
"jest": "^27.0.6",
"supertest": "^6.1.4"
}
}