-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.11 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.11 KB
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": "ghost-book",
"version": "1.0.0",
"description": "Turn a ghost blog into a single page website for bookifying",
"main": "index.js",
"scripts": {
"start": "enoki content -w & watchify app/index.js -o bundles/bundle.js -t sheetify -p [ css-extract -o bundles/bundle.css ] app/index.js",
"dev": "enoki content --watch & budo app/index.js --dir -s bundles/bundle.js -P -- -t sheetify -p [ css-extract -o bundles/bundle.css ]",
"build": "npm run content && enoki content && browserify app/index.js -o bundles/bundle.js -t [ sheetify -u sheetify-cssnext ] -g es2040 -p [ css-extract -o bundles/bundle.css ] -p tinyify",
"content": "node index.js"
},
"keywords": [],
"author": "Code for Science & Society",
"license": "MIT",
"dependencies": {
"@tryghost/content-api": "^1.0.0",
"budo": "^11.6.0",
"choo": "^6.13.1",
"css-extract": "^1.3.0",
"enoki": "^2.1.0",
"es2040": "^1.2.6",
"markdown-it": "^8.4.2",
"sheetify": "^7.3.3",
"tachyons": "^4.11.1",
"tinyify": "^2.5.0",
"watchify": "^3.11.0"
},
"devDependencies": {
"mkdirp": "^0.5.1"
}
}