-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 2.14 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
{
"name": "fylgja-site",
"version": "1.3.5",
"description": "The Fylgja site powered by eleventy",
"private": true,
"scripts": {
"debug": "DEBUG=* npx eleventy",
"clean": "rm -r _site/* || true",
"test:css": "stylelint src/**/*.scss",
"test": "npm run test:css",
"start": "npm run dev",
"dev:js": "npx rollup -c -w",
"dev:static": "eleventy --serve",
"dev": "npm run dev:js | npm run dev:static",
"build:js": "NODE_ENV=production npx rollup -c",
"build:css": "postcss _site/css/**/*.css -d _site/css",
"build:static": "ELEVENTY_ENV=prod eleventy",
"build": "npm run build:static && npm run build:css && npm run build:js",
"prebuild": "npm test && npm run clean"
},
"keywords": [],
"author": "fylgja",
"license": "MIT",
"stylelint": {
"extends": "@fylgja/stylelint-config"
},
"browserslist": [
"defaults"
],
"dependencies": {
"@docsearch/js": "^3.5.2",
"@fylgja/colors": "^2.0.0-beta.6",
"@fylgja/marquee": "^1.0.0",
"dialog-polyfill": "^0.5.6",
"fylgja": "^1.3.4",
"prismjs": "^1.29.0",
"roving-ux": "^1.0.5"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"@11ty/eleventy-img": "^3.1.8",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@fullhuman/postcss-purgecss": "^5.0.0",
"@fylgja/sass": "^2.0.1",
"@fylgja/stylelint-config": "^6.0.2",
"@grimlink/eleventy-plugin-sass": "^1.0.3",
"@quasibit/eleventy-plugin-sitemap": "^2.2.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"clean-css": "^5.3.3",
"cssnano": "^6.0.1",
"eleventy-plugin-nesting-toc": "^1.3.0",
"eleventy-plugin-svg-contents": "^0.7.0",
"eleventy-plugin-youtube-embed": "^1.9.1",
"esbuild": "^0.19.8",
"html-minifier": "^4.0.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-external-anchor": "^1.0.0",
"postcss": "^8.4.32",
"postcss-cli": "^10.1.0",
"postcss-preset-env": "^9.3.0",
"rollup": "^4.6.1",
"rollup-plugin-esbuild": "^6.1.0",
"sass": "^1.69.5",
"slugify": "^1.6.6",
"stylelint": "^15.11.0"
}
}