summaryrefslogtreecommitdiff
path: root/app/express-example/templates/basic/package.json
blob: fd4b11358522636c284671a2f7c12522243bd108 (plain)
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
{
  "name": "<%= _.slugify(appname) %>",
  "version": "0.0.1",
  "private": true,
  "scripts": {
    "start": "node ./bin/www"
  },
  "dependencies": {
    "express": "~4.4.5",
    "serve-favicon": "~2.0.1",
    "morgan": "~1.1.1",
    "cookie-parser": "~1.3.2",
    "body-parser": "~1.4.3",
    "debug": "~1.0.2"<% if(options.viewEngine == 'jade'){ %>,
    "jade": "~1.3.1"<% } %><% if(options.viewEngine == 'ejs'){ %>,
    "ejs": "~1.0.0"<% } %>
  },
  "devDependencies": {<% if(options.buildTool == 'grunt'){ %>
    "grunt": "~0.4.5",
    "grunt-develop": "~0.4.0"<% if(options.cssPreprocessor == 'sass'){ %>,
    "grunt-contrib-sass": "^0.8.1"<% } %><% if(options.cssPreprocessor == 'node-sass'){ %>,
    "grunt-sass": "^0.16.1"<% } %><% if(options.cssPreprocessor == 'less'){ %>,
    "grunt-contrib-less": "^0.12.0"<% } %>,
    "grunt-contrib-watch": "~0.6.1",
    "request": "~2.36.0",
    "time-grunt": "~0.3.2",
    "load-grunt-tasks": "~0.6.0"<% } %><% if(options.buildTool == 'gulp'){ %>
    "gulp": "~3.8.8"<% if(options.cssPreprocessor == 'sass'){ %>,
    "gulp-ruby-sass": "^0.7.1"<% } %><% if(options.cssPreprocessor == 'node-sass'){ %>,
    "gulp-sass": "^1.2.2"<% } %><% if(options.cssPreprocessor == 'less'){ %>,
    "gulp-less": "^1.3.6"<% } %>,
    "gulp-nodemon": "~1.0.4",
    "gulp-livereload": "~2.1.1"<% } %>
  }
}