-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.24 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.24 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
44
45
{
"name": "sure-vote",
"version": "1.0.0",
"engines": {
"node": "12.18.3",
"npm": "6.14.6"
},
"description": "This app allows you to securely vote in political elections",
"main": "server.js",
"scripts": {
"start": "node server.js",
"start:server": "nodemon server.js",
"start:client": "cd client && npm start",
"build": "cd client && npm i && npm run build",
"seed": "node Server/config/candidateSeed.js && node Server/config/electionSeed.js",
"heroku-postbuild": "npm run seed && npm run build"
},
"repository": {
"type": "git",
"url": "www.github.com/jburz/sure-vote"
},
"author": "",
"license": "MIT",
"dependencies": {
"@azure/cognitiveservices-computervision": "^7.1.0",
"@azure/cognitiveservices-face": "^4.1.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.1",
"mongoose": "^5.11.8",
"morgan": "^1.10.0",
"nodemailer": "^6.4.17",
"nodemon": "^2.0.6",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.0.1",
"uuid": "^8.3.2",
"validator": "^13.5.2"
}
}