This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
forked from techx/quill
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.71 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": "hackmit-reg",
"description": "mean stack registration system",
"version": "0.0.1",
"private": "true",
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"async": "^1.4.2",
"aws-sdk": "^2.141.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.2",
"bower": "^1.8.4",
"dotenv": "^1.2.0",
"email-templates": "^2.0.1",
"express": "^4.16.2",
"googleapis": "^23.0.0",
"gulp-concat": "^2.6.1",
"gulp-minify-css": "^1.2.0",
"gulp-ng-annotate": "^1.1.0",
"gulp-sourcemaps": "^1.12.0",
"gulp-uglify": "^1.5.4",
"handlebars": "^3.0.3",
"hellosign-sdk": "^1.1.14",
"jsonwebtoken": "^8.1.0",
"method-override": "^2.3.10",
"moment": "^2.19.1",
"moment-timezone": "^0.5.23",
"mongoose": "^4.12.5",
"morgan": "^1.9.1",
"multer": "^1.3.0",
"multer-s3": "^2.7.0",
"nodemailer": "^4.3.1",
"nodemailer-smtp-transport": "^1.0.3",
"passport-local": "^1.0.0",
"request": "^2.83.0",
"underscore": "^1.8.3",
"uuid": "^3.1.0",
"validator": "^3.40.1",
"xoauth2": "^1.2.0"
},
"scripts": {
"mongo": "mongod --dbpath db",
"start": "node app.js",
"dev": "nodemon app.js",
"watch": "gulp server",
"prod": "gulp build && node app.js",
"config": "cp .env.config .env",
"postinstall": "bower install && gulp build"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-bower": "0.0.13",
"gulp-browserify": "^0.5.1",
"gulp-concat": "^2.6.0",
"gulp-install": "^1.1.0",
"gulp-ng-annotate": "^1.0.0",
"gulp-nodemon": "^2.4.2",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"nodemon": "^1.12.1"
},
"engines": {
"node": "7.4.0"
}
}