forked from techx/quill
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.18 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": "hackmit-reg",
"description": "mean stack registration system",
"version": "0.0.1",
"private": "true",
"dependencies": {
"async": "^1.4.2",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.8.4",
"cookie-parser": "~1.3.2",
"dotenv": "^1.2.0",
"email-templates": "^2.0.1",
"express": "^4.9.8",
"gulp-minify-css": "^1.2.0",
"handlebars": "^3.0.3",
"jsonwebtoken": "5.0.4",
"method-override": "^2.3.5",
"moment": "^2.10.3",
"mongoose": "^4.1.2",
"morgan": "^1.6.1",
"nodemailer": "^1.4.0",
"nodemailer-smtp-transport": "^1.0.3",
"passport-local": "^1.0.0",
"request": "^2.60.0",
"underscore": "^1.8.3",
"validator": "^3.40.1"
},
"scripts": {
"mongo": "mongod --dbpath db",
"start": "nodemon app.js",
"watch": "gulp server",
"prod": "gulp build && node app.js",
"config": "cp .env.config .env"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-browserify": "^0.5.1",
"gulp-concat": "^2.6.0",
"gulp-ng-annotate": "^1.0.0",
"gulp-nodemon": "^2.0.3",
"gulp-sass": "^2.0.1",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"nodemon": "^1.2.1"
}
}