forked from techx/quill
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.96 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.96 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "hackmit-reg",
"description": "mean stack registration system",
"version": "0.0.1",
"private": "true",
"dependencies": {
"async": "^1.4.2",
"aws-sdk": "^2.125.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.8.4",
"bower": "^1.8.0",
"cookie-parser": "~1.3.2",
"dotenv": "^1.2.0",
"email-templates": "^2.0.1",
"express": "^4.9.8",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-minify-css": "^1.2.0",
"gulp-ng-annotate": "^1.1.0",
"gulp-nodemon": "^2.2.1",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^1.12.0",
"gulp-uglify": "^1.5.4",
"gulp-uglify-es": "^1.0.4",
"handlebars": "^3.0.3",
"jsonwebtoken": "5.0.4",
"method-override": "^2.3.5",
"migrate-mongoose": "^3.2.2",
"moment": "^2.10.3",
"mongo-sanitize": "^1.0.0",
"mongoose": "4.1.2",
"morgan": "^1.6.1",
"multer": "^1.3.0",
"multer-s3": "^2.7.0",
"node-fetch": "^2.3.0",
"nodemailer": "^1.4.0",
"nodemailer-smtp-transport": "^1.0.3",
"nodemon": "^1.11.0",
"passport-local": "^1.0.0",
"qrcode-generator": "^1.3.1",
"request": "^2.60.0",
"shuffle-seed": "^1.1.6",
"underscore": "^1.8.3",
"validator": "^3.40.1"
},
"scripts": {
"mongo": "mongod --dbpath db",
"start": "./node_modules/.bin/migrate up --autosync ; nodemon app.js",
"watch": "./node_modules/.bin/migrate up --autosync ; gulp server",
"prod": "cp .env.prod .env ; ./node_modules/.bin/migrate up --autosync ; ./node_modules/gulp/bin/gulp.js build && node app.js",
"config": "cp .env.dev .env",
"postinstall": "./node_modules/bower/bin/bower install"
},
"devDependencies": {
"gulp": "^3.9.1",
"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"
},
"engines": {
"node": "9.3.0"
}
}