This repository has been archived by the owner on Mar 28, 2020. It is now read-only.
forked from Andy-set-studio/hylia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·88 lines (88 loc) · 2.91 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "hylia",
"version": "0.5.1",
"description": "A simple Eleventy starter kit to help you have a blog of your own",
"main": ".eleventy.js",
"dependencies": {
"@11ty/eleventy": "^0.10.0",
"@11ty/eleventy-plugin-rss": "^1.0.7",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"@tbranyen/jsdom": "^13.0.0",
"dotenv": "^8.2.0",
"encoding": "^0.1.12",
"html-minifier": "^4.0.0",
"json-to-scss": "^1.5.0",
"markdown-it-classy": "^0.2.0",
"netlify-lambda": "^1.6.3",
"node-fetch": "^2.6.0",
"npm-run-all": "^4.1.5",
"sass": "^1.26.3",
"semver": "^7.1.3",
"slugify": "^1.4.0",
"stalfos": "github:hankchizljaw/stalfos#c8971d22726326cfc04089b2da4d51eeb1ebb0eb",
"twitter": "^1.7.1"
},
"devDependencies": {
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"minimist": "^1.2.5",
"netlify-cli": "^2.40.0",
"node-jq": "^1.11.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"rollup": "^2.1.0",
"rollup-plugin-json": "^4.0.0",
"stylelint": "^13.2.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.16.0"
},
"scripts": {
"postinstall": "netlify-lambda install",
"sass:tokens": "json-to-scss src/_data/tokens.json src/scss/_tokens.scss",
"build:sass": "sass src/scss/global.scss src/_includes/assets/css/global.css --style=compressed",
"sass:process": "run-p sass:tokens build:sass",
"dev:netlify": "cross-env ELEVENTY_ENV=development netlify dev",
"start": "run-p \"sass:process --watch\" serve",
"serve": "cross-env ELEVENTY_ENV=development eleventy --serve",
"serve:lambda": "netlify-lambda serve _lambda",
"build": "cross-env ELEVENTY_ENV=production eleventy",
"build:lambda": "netlify-lambda build _lambda",
"build:blogroll": "node _task/node-opml-to-blogroll.js",
"build:clean": "rimraf dist/*",
"production": "run-s build:clean build:blogroll sass:process build:lambda build",
"post:new": "node _task/node-trello-contents.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,scss,md}": "prettier --write",
"*.{scss}": "stylelint --fix",
"*.{js}": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frontendweekly/hylia.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/frontendweekly/hylia/issues"
},
"homepage": "https://github.com/frontendweekly/hylia#readme"
}