-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
49 lines (49 loc) · 1.87 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "haxe.io",
"repository": "https://github.com/skial/haxe.io",
"version": "0.0.1",
"license": "GPL-3.0+",
"devDependencies": {
"autoprefixer": "^6.7.3",
"autotrack": "^1.1.0",
"browserify": "^13.1.0",
"critical": "github:addyosmani/critical",
"cssnano": "^3.7.7",
"electron": "^9.1.0",
"electron-prebuilt": "^1.4.3",
"electron-spawn": "latest",
"emojione": "^2.2.6",
"github": "^2.6.0",
"google-closure-compiler": "^20160911.0.0",
"html-minifier": "^2.1.7",
"http-server": "latest",
"markdown-it": "^7.0.1",
"markdown-it-abbr": "^1.0.4",
"markdown-it-attrs": "^0.6.5",
"markdown-it-emoji": "^1.3.0",
"markdown-it-footnote": "^3.0.1",
"markdown-it-headinganchor": "^1.3.0",
"node-static": "^0.7.9",
"npm-run-all": "^3.1.1",
"onchange": "^3.0.2",
"postcss": "^5.2.13",
"posthtml": "^0.8.7",
"posthtml-cli": "^0.2.13",
"twemoji": "^2.2.5",
"unorm": "^1.4.1"
},
"scripts": {
"copy:extras": "all-extras.sh \"src\"",
"build:js": "buildjs.sh",
"build:index": "electron --enable-logging ./site/ -w 1920 -h 1080 --input \"/src/index.html\" --script ./site/script.js --outputDir \"/bin\" --show --scripts checkmissing.js sitemap.js version.js",
"process:index": "htmlmin.sh bin/index.html",
"build:patreon": "patreonscraper.sh",
"build:patch": "all-html.sh \"bin\"",
"build:all": "npm-run-all -c build:patreon build:js copy:extras build:index process:index build:patch",
"watch:md": "onchange \"./src/**/*.md\" -w -- render.sh {{changed}}",
"watch:jsmin": "onchange \"./src/js/*.js\" -w -- jsmin.sh {{changed}}",
"watch:htmlmin": "onchange \"./src/**/*.html\" -w -- htmlmin.sh {{changed}}",
"watch:cssmin": "onchange \"./src/css/*.css\" -w -- cssmin.sh {{changed}}",
"watch": "npm-run-all -p watch:md watch:jsmin watch:cssmin watch:htmlmin"
}
}