This repository has been archived by the owner on Dec 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.07 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"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",
"mongodb": "^3.7.3",
"mongoose": "^5.10.6",
"morgan": "^1.9.1",
"multer": "^1.3.0",
"multer-s3": "^2.7.0",
"natives": "^1.1.6",
"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",
"build": "chmod u+x deploy.sh && ./deploy.sh",
"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",
"pre-commit": "lint-staged"
},
"pre-commit": [
"pre-commit"
],
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"cors": "^2.8.5",
"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": "^4.0.0",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"lint-staged": "^8.1.7",
"nodemon": "^1.12.1",
"pre-commit": "^1.2.2",
"prettier": "^1.17.1"
},
"engines": {
"node": "10.23.0"
}
}