-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 787 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 787 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
31
{
"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.2"
},
"scripts": {
"start": "node ./src/bin/www",
"postinstall": "grunt build",
"deploy": "gcloud app deploy"
},
"dependencies": {
"body-parser": "^1.14.2",
"cookie-parser": "^1.4.1",
"debug": "^2.2.0",
"express": "^4.13.4",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-cssmin": "^0.14.0",
"grunt-contrib-jshint": "^0.12.0",
"grunt-contrib-watch": "^0.6.1",
"jade": "^1.11.0",
"morgan": "^1.6.1",
"serve-favicon": "^2.3.0"
}
}