-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
41 lines (41 loc) · 1.26 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
{
"name": "AustinJavaScript.com",
"version": "3.2.1",
"description": "Austin JavaScript site",
"scripts": {
"build:css": "sass _sass/_main.scss:_site/assets/css/main.css --style=compressed --no-source-map",
"build": "npm run clean && eleventy && npm run build:css && npm run purgecss",
"clean": "rm -rf ./_site",
"debug": "DEBUG=Eleventy* eleventy",
"lint:js": "eslint --fix .eleventy.js ./_includes/*.js",
"lint:md": "markdownlint --fix ./_posts/*.md ./_meetups/*.md",
"lint": "npm run lint:js && npm run lint:md",
"purgecss": "npx purgecss --config ./purgecss.config.js",
"start": "ELEVENTY_ENV=dev eleventy --serve --watch",
"test": "npm run lint"
},
"keywords": [
"Austin",
"JavaScript",
"AustinJS"
],
"author": "@AustinJS",
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^1.0.2",
"@11ty/eleventy-img": "^2.0.1",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"bulma": "^0.9.4",
"html-minifier": "^4.0.0",
"markdown-it": "^13.0.1",
"purgecss": "^5.0.0",
"sass": "^1.81.0"
},
"devDependencies": {
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"markdownlint": "^0.26.2",
"markdownlint-cli": "^0.32.2"
}
}