-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.71 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
{
"name": "fi-calc-guide",
"private": true,
"version": "1.0.0",
"description": "A guidebook for FI Calc",
"main": "index.js",
"scripts": {
"start": "rimraf _site && cross-env ELEVENTY_ENV=dev eleventy --input=src --output=_site --serve",
"build": "npm run clean && cross-env ELEVENTY_ENV=prod eleventy --input=src --output=docs && cp CNAME docs/CNAME",
"clean": "rimraf docs",
"deploy": "npm run clean && npm run build && cp CNAME docs && cd docs && git init && git commit --allow-empty -m 'update site' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update docs' && git push [email protected]:jamesplease/fi-calc-guide gh-pages --force",
"deploy-old": "npm run clean && npm run build && cp CNAME docs && cd docs && git init && git commit --allow-empty -m 'update site' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update docs' && git push [email protected]:jamesplease/fi-calc-guide-old gh-pages --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamesplease/fi-calc-guide.git"
},
"author": "James Please",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/jamesplease/fi-calc-guide/issues"
},
"homepage": "https://github.com/jamesplease/fi-calc-guide#readme",
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@traptitech/markdown-it-katex": "3.2.3",
"cross-env": "^7.0.2",
"cssnano": "^4.1.10",
"html-minifier": "^4.0.0",
"markdown-it-anchor": "^5.3.0",
"postcss-import": "^12.0.1",
"precss": "^4.0.0",
"rimraf": "^3.0.2",
"sanitize-html": "^2.3.3",
"uglify-js": "^3.9.3"
}
}