forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 743 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 743 Bytes
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
{
"name": "appengine-gruntjs",
"description": "An example of running Grunt.js on Google App Engine.",
"version": "0.0.1",
"private": true,
"license": "Apache Version 2.0",
"author": "Google Inc.",
"engines": {
"node": ">=4.3.2"
},
"scripts": {
"start": "node ./src/bin/www",
"postinstall": "grunt build"
},
"dependencies": {
"body-parser": "1.15.2",
"cookie-parser": "1.4.3",
"debug": "2.6.0",
"express": "4.14.0",
"grunt": "1.0.1",
"grunt-cli": "1.2.0",
"grunt-contrib-clean": "1.0.0",
"grunt-contrib-cssmin": "1.0.2",
"grunt-contrib-jshint": "1.1.0",
"grunt-contrib-watch": "1.0.0",
"morgan": "1.7.0",
"pug": "2.0.0-beta6",
"serve-favicon": "2.3.2"
}
}