-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "voting-app",
"version": "1.0.0",
"description": "Voting app for FCC",
"main": "server.js",
"scripts": {
"start": "server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"voting",
"app",
"freecodecamp",
"express",
"node"
],
"author": "Saumitra Bose",
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"express-session": "^1.14.1",
"mongodb": "^2.2.9",
"mongoose": "^4.6.0",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-github2": "^0.1.10",
"passport-google-oauth2": "^0.1.6",
"pug": "^2.0.0-beta6",
"serve-favicon": "^2.3.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.14.0",
"browser-sync": "^2.15.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-babel": "^6.1.2",
"gulp-changed": "^1.3.2",
"gulp-clean-css": "^2.0.12",
"gulp-nodemon": "^2.1.0",
"gulp-sass": "^2.3.2",
"gulp-uglify": "^2.0.0"
}
}