This repository has been archived by the owner on Mar 25, 2023. It is now read-only.
forked from techx/quill
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.81 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
{
"name": "hackmit-reg",
"description": "mean stack registration system",
"version": "0.0.1",
"private": "true",
"dependencies": {
"angular": "^1.7.9",
"angular-qrcode": "^7.2.0",
"angular-ui-router": "^1.0.20",
"async": "^2.6.1",
"aws-sdk": "^2.747.0",
"bcrypt": "^3.0.8",
"body-parser": "^1.18.3",
"browserify": "^16.2.3",
"browserify-ngannotate": "^2.0.0",
"cors": "^2.8.5",
"csv-writer": "^1.6.0",
"dotenv": "^6.2.0",
"email-templates": "^5.0.2",
"express": "^4.16.4",
"file-saver": "^2.0.2",
"gulp": "^3.9.1",
"gulp-buffer": "0.0.2",
"gulp-tap": "^1.0.1",
"isteven-angular-multiselect": "git+https://github.com/isteven/angular-multi-select.git",
"jquery": "^3.4.1",
"jsonwebtoken": "5.0.4",
"jszip": "^3.7.1",
"method-override": "^3.0.0",
"moment": "^2.23.0",
"mongod": "^2.0.0",
"mongodb": "^3.5.7",
"mongoose": "^5.9.9",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"nodemailer": "^4.7.0",
"nodemailer-smtp-transport": "^2.7.4",
"open": "^7.0.4",
"pdfjs-dist": "^2.2.228",
"request": "^2.88.0",
"showdown": "^1.9.1",
"sweetalert": "^2.1.2",
"underscore": "^1.13.1",
"validator": "^10.10.0",
"vinyl-source-stream": "^2.0.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",
"build": "gulp build"
},
"devDependencies": {
"gulp-clean-css": "^4.0.0",
"gulp-concat": "^2.6.1",
"gulp-ng-annotate": "^2.1.0",
"gulp-nodemon": "^2.5.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.1",
"nodemon": "^1.18.9"
},
"engines": {
"node": "10.14.1"
}
}