-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.17 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "penconnectorlab",
"version": "1.0.0",
"description": "A social media app for pentestors",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false INLINE_RUNTIME_CHUNK=false npm install --prefix client && npm run build --prefix client",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"author": "Mark Freer",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^7.4.2",
"aws-sdk": "^2.1260.0",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"better-npm-audit": "^1.8.1",
"body-parser": "^1.19.0",
"clamdjs": "^1.0.2",
"clamscan": "^1.3.3",
"concurrently": "^3.5.1",
"config": "^3.3.6",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-mongo-sanitize": "^2.0.2",
"express-rate-limit": "^5.2.6",
"express-validator": "^6.10.0",
"file-type": "^3.9.0",
"gravatar": "^1.8.1",
"gridfs-stream": "^1.1.1",
"helmet": "^4.4.1",
"jsonwebtoken": "^8.5.1",
"logger": "^0.0.1",
"mongoose": "^5.12.7",
"mongoose-sequence": "^5.3.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.2.0",
"multer-s3": "^2.9.0",
"multiparty": "^4.2.2",
"nodemailer-sendgrid-transport": "^0.2.0",
"normalize-url": "^4.5.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"react-alert": "^7.0.2",
"react-bootstrap": "^1.5.2",
"react-dropzone": "^11.3.2",
"react-google-recaptcha": "^2.1.0",
"snyk": "^1.585.0",
"superagent": "^6.1.0",
"validator": "^13.5.2",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"nodemailer": "^6.5.0",
"nodemon": "^2.0.19",
"sass": "^1.32.12"
},
"proxy": {
"/auth/google": {
"target": "http://localhost:5000"
}
},
"snyk": true
}