-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 956 Bytes
/
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
{
"name": "ghost-on-heroku",
"description": "Just a blogging platform on Heroku.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/cobyism/ghost-on-heroku.git"
},
"bugs": "https://github.com/TryGhost/Ghost/issues",
"private": true,
"version": "0.7.6",
"dependencies": {
"Casper": "TryGhost/Casper#1.2.8",
"ghost": "0.7.6",
"ghost-s3-storage": "~0.2.2",
"grunt-cli": "^1.2.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"ncp": "^2.0.0",
"pg": "latest"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^1.2.0",
"grunt-contrib-sass": "^0.9.2",
"grunt-contrib-watch": "^0.6.1"
},
"engines": {
"node": "~0.12.7"
},
"scripts": {
"postinstall": "echo postinstall time; ncp node_modules/Casper content/themes/casper; bundle install; ./node_modules/grunt-cli/bin/grunt sassify",
"start": "node server.js"
}
}