-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.89 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
{
"name": "my-voting-app",
"version": "1.0.0",
"description": "Voting App using Next.js with email, oAuth authentication, and mongodb",
"author": "Jennifer Arguello <jarguello@gmail.com>",
"license": "ISC",
"repository": "https://github.com/ticachica/my-voting-app.git",
"main": "index.js",
"dependencies": {
"assert": "^1.4.1",
"babel-core": "^6.26.0",
"babel-plugin-wrap-in-js": "^1.1.1",
"body-parser": "^1.17.2",
"bootstrap": "^4.0.0-beta.3",
"chart.js": "^2.7.1",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"express-session": "^1.15.5",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.2.1",
"lusca": "^1.5.1",
"mongodb": "^2.2.31",
"mongoose": "^4.13.8",
"nedb": "^1.8.0",
"next": "^4.2.1",
"node-sass": "^4.7.2",
"nodemailer": "^4.4.1",
"nodemailer-direct-transport": "^3.3.2",
"nodemailer-smtp-transport": "^2.7.4",
"now-logs": "0.0.7",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"passport-twitter": "^1.0.4",
"popper.js": "^1.13.0",
"random-key": "^0.3.2",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
"react-addons-css-transition-group": "^15.5.2",
"react-addons-transition-group": "^15.6.2",
"react-chartjs-2": "^2.6.4",
"react-dom": "^16.2.0",
"react-social": "^1.10.0",
"react-transition-group": "^1.1.3",
"reactstrap": "^4.8.0",
"sass-loader": "^6.0.6",
"unfetch": "^3.0.0",
"uuid": "^3.1.0"
},
"scripts": {
"dev": "NODE_ENV=development PORT=3000 node index.js",
"debug": "NODE_ENV=development PORT=3000 node --inspect index.js",
"build": "next build",
"start": "node index.js",
"heroku-postbuild": "npm run build"
},
"engines": {
"node": "8.9.3"
},
"now" : {
"alias": "my-voting-app",
"public": true
}
}