-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.44 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
{
"name": "hack36",
"description": "mean stack registration system",
"version": "0.0.1",
"private": "true",
"dependencies": {
"angular": "^1.7.5",
"angular-ui-router": "^1.0.20",
"async": "^2.6.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"browserify": "^16.2.3",
"browserify-ngannotate": "^2.0.0",
"dotenv": "^6.1.0",
"email-templates": "^5.0.2",
"express": "^4.16.4",
"gulp-buffer": "0.0.2",
"gulp-tap": "^1.0.1",
"jquery": "^3.3.1",
"jsonwebtoken": "5.0.4",
"method-override": "^3.0.0",
"moment": "^2.22.2",
"mongoose": "^5.3.12",
"morgan": "^1.9.1",
"nodemailer": "^4.6.8",
"nodemailer-smtp-transport": "^2.7.4",
"request": "^2.88.0",
"semantic-ui": "^2.4.2",
"showdown": "^1.9.0",
"sweetalert": "^2.1.2",
"underscore": "^1.9.1",
"validator": "^10.9.0",
"vinyl-source-stream": "^2.0.0"
},
"scripts": {
"mongo": "mongod --dbpath db",
"start": "node app.js",
"dev": "nodemon app.js",
"prod": "gulp build && node app.js",
"config": "cp .env.config .env",
"postinstall": "cd semantic && gulp build && cd ../ && gulp semantic && gulp build"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-clean-css": "^3.10.0",
"gulp-concat": "^2.6.1",
"gulp-ng-annotate": "^2.1.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.1"
},
"engines": {
"node": "10.13.0"
}
}