-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name" : "MEAN Blog",
"version" : "0.1.0",
"description" : "A simple blog for MEAN stack practice",
"main" : "index.js",
"scripts" : {
"test" : "echo \"Error: no test specified\" && exit 1"
},
"keywords" : [
"blog",
"MEAN"
],
"private" : true,
"author" : "flyerq <flyer@flyerq.com> (http://flyerq.com)",
"license" : "MIT",
"homepage" : "https://github.com/flyerq/MEAN.blog",
"repository" : {
"type" : "git",
"url" : "https://github.com/flyerq/MEAN.blog.git"
},
"dependencies" : {
"body-parser" : "^1.15.2",
"co" : "^4.6.0",
"del" : "^2.2.2",
"ejs" : "^2.5.2",
"express" : "^4.14.0",
"moment" : "^2.15.1",
"mongoose" : "^4.6.3",
"mongoose-auto-increment" : "^5.0.1",
"morgan" : "^1.7.0",
"multer" : "^1.2.0",
"serve-favicon" : "^2.3.0",
"shortid" : "^2.2.6"
},
"devDependencies" : {
"babel-preset-latest" : "^6.16.0",
"browser-sync" : "^2.17.5",
"del" : "^2.2.2",
"gulp" : "^3.9.1",
"gulp-autoprefixer" : "^3.1.1",
"gulp-babel" : "^6.1.2",
"gulp-changed" : "^1.3.2",
"gulp-load-plugins" : "^1.4.0",
"gulp-nodemon" : "^2.2.1",
"gulp-sass" : "^2.3.2",
"run-sequence" : "^1.2.2"
},
"engines" : {
"node" : ">= 6.9.1"
}
}