-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"name": "men-blog",
"version": "1.0.0",
"scripts": {
"start": "nodemon index.js"
},
"description": "A sample blog template with MEN stack: MongoDB + Express + NodeJS",
"main": "index.js",
"bugs": {
"url": "https://github.com/alex-kozin/men-blog/issues"
},
"license": "MIT",
"author": "Alex Kozin",
"contributors": [
"Alex Kozin",
"David Miller (Bootstrap Theme)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alex-kozin/men-blog"
},
"engines": {
"node": "10.16.3"
},
"dependencies": {
"@fortawesome/fontawesome-free": "5.15.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"bootstrap": "4.5.3",
"connect-flash": "^0.1.1",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"express-session": "^1.17.1",
"jquery": "3.5.1",
"mongoose": "^5.11.8",
"mongoose-unique-validator": "^2.0.3"
},
"devDependencies": {
"browser-sync": "2.26.13",
"del": "6.0.0",
"gulp": "4.0.2",
"gulp-autoprefixer": "7.0.1",
"gulp-clean-css": "4.3.0",
"gulp-header": "2.0.9",
"gulp-plumber": "^1.2.1",
"gulp-rename": "2.0.0",
"gulp-sass": "4.1.0",
"gulp-uglify": "3.0.2",
"merge-stream": "2.0.0",
"nodemon": "^2.0.6"
}
}