sass-site/package.json

98 lines
3.9 KiB
JSON
Raw Normal View History

2022-12-12 23:07:23 +01:00
{
"name": "sass-site",
2023-01-09 22:41:49 +01:00
"version": "2.0.0",
2023-01-06 23:37:45 +01:00
"homepage": "https://sass-lang.com/",
"title": "Sass",
"description": "Sass: Syntactically Awesome Style Sheets",
2022-12-12 23:07:23 +01:00
"repository": {
"type": "git",
"url": "https://github.com/sass/sass-site.git"
},
2023-01-06 23:37:45 +01:00
"private": true,
2022-12-12 23:07:23 +01:00
"license": "MIT",
"engines": {
2023-06-20 00:12:39 +02:00
"node": "^16"
2022-12-12 23:07:23 +01:00
},
"scripts": {
2023-01-06 22:40:29 +01:00
"serve": "run-p 'watch:**'",
"build": "run-s clean-version-cache build-dev:scripts 'build:**'",
2023-06-20 17:20:07 +02:00
"build-prod": "run-s clean-version-cache build-prod:scripts 'build:**'",
"clean-version-cache": "rm -f source/_data/versionCache.json",
2023-01-06 22:40:29 +01:00
"build:sass": "sass --style=compressed ./source/assets/sass/sass.scss:./source/assets/dist/css/sass.css ./source/assets/sass/noscript.scss:./source/assets/dist/css/noscript.css",
"watch:sass": "sass --watch ./source/assets/sass/sass.scss:./source/assets/dist/css/sass.css ./source/assets/sass/noscript.scss:./source/assets/dist/css/noscript.css",
2023-01-06 23:35:10 +01:00
"build-dev:scripts": "rollup -c",
"build-prod:scripts": "BABEL_ENV=production rollup -c",
"watch:scripts": "npm run build-dev:scripts -- -w",
2023-05-19 19:24:15 +02:00
"build:typedoc": "./tool/typedoc-build.sh",
2023-02-26 02:07:51 +01:00
"build:11ty": "NODE_OPTIONS='-r ts-node/register' eleventy",
2023-06-20 13:29:28 +02:00
"watch:11ty": "npm run build:11ty -- --serve --incremental",
2023-01-09 20:48:04 +01:00
"tsc": "tsc",
2023-06-15 19:47:55 +02:00
"gts": "gts fix",
"gts:ci": "gts lint",
2023-06-20 12:57:37 +02:00
"prettier": "prettier --write '**/*.{json,yml,scss}'",
"prettier:ci": "prettier --check '**/*.{json,yml,scss}'",
"stylelint": "stylelint 'source/assets/sass/*.{css,scss}' --fix",
"stylelint:ci": "stylelint 'source/assets/sass/*.{css,scss}'",
2023-06-15 19:47:55 +02:00
"lint": "run-s prettier gts stylelint tsc",
"lint:ci": "run-s prettier:ci gts:ci stylelint:ci tsc",
2023-06-16 01:45:25 +02:00
"test": "echo \"Error: no test specified\" && exit 1",
2023-06-20 20:56:30 +02:00
"checklinks:internal": "npx --yes --package=hyperlink -- 'hyperlink --canonicalroot https://sass-lang.com/ --root _site/ -r -p -i --skip \"/blog/index.html\" --skip \"/blog/page/\" --skip \"fragment-redirect\" --skip \".css.map\" --skip \".js.map\" --skip \".svg\" --skip \"types.Map\" _site/index.html'",
2023-06-20 19:17:03 +02:00
"checklinks:external": "npx --yes --package=broken-link-checker -- 'blc -ro --exclude=twitter.com --exclude=mvnrepository.com --exclude=drupal.org --exclude=web.archive.org https://sass-lang.com'"
2022-12-12 23:07:23 +01:00
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
2023-04-04 20:22:44 +02:00
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
2023-01-06 23:35:10 +01:00
"@rollup/plugin-babel": "^6.0.3",
2023-06-19 22:38:41 +02:00
"@rollup/plugin-commonjs": "^25.0.2",
2023-01-06 23:35:10 +01:00
"@rollup/plugin-inject": "^5.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
2023-05-25 17:00:51 +02:00
"@sindresorhus/slugify": "^1.1.2",
2023-06-16 19:45:29 +02:00
"@types/deep-equal": "^1.0.1",
2023-01-09 20:48:04 +01:00
"@types/jquery": "^3.5.16",
"@types/jqueryui": "^1.12.17",
2023-03-08 21:59:19 +01:00
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-attrs": "^4.1.0",
2023-06-09 04:18:33 +02:00
"@types/markdown-it-footnote": "^3.0.0",
2023-01-09 21:24:06 +01:00
"@types/node": "^16",
2023-03-08 21:59:19 +01:00
"@types/prismjs": "^1.26.0",
2023-06-19 23:55:26 +02:00
"@types/semver": "^7.5.0",
"cheerio": "^1.0.0-rc.12",
"date-fns": "^2.30.0",
"deep-equal": "^2.2.1",
2023-06-15 19:47:55 +02:00
"gts": "^3.1.1",
"jquery": "^3.7.0",
2023-01-06 23:35:10 +01:00
"jquery-ui": "^1.13.2",
2023-01-24 23:51:07 +01:00
"js-yaml": "^4.1.0",
2023-02-02 21:52:26 +01:00
"kleur": "^4.1.5",
2023-06-19 23:55:26 +02:00
"liquidjs": "^10.8.3",
2023-02-24 18:52:18 +01:00
"lorem-ipsum": "^2.0.8",
2023-02-25 19:38:22 +01:00
"markdown-it": "^13.0.1",
2023-04-21 21:01:43 +02:00
"markdown-it-anchor": "^8.6.7",
2023-02-25 19:38:22 +01:00
"markdown-it-attrs": "^4.1.6",
2023-01-29 20:17:04 +01:00
"markdown-it-deflist": "^2.1.0",
2023-06-09 04:18:33 +02:00
"markdown-it-footnote": "^3.0.3",
2023-01-24 19:50:16 +01:00
"netlify-plugin-11ty": "^1.3.0",
2023-01-06 22:40:29 +01:00
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
2023-03-07 21:45:47 +01:00
"prismjs": "^1.29.0",
"rollup": "^3.25.1",
2023-06-19 22:38:41 +02:00
"sass": "^1.63.4",
2023-06-16 19:45:29 +02:00
"semver": "^7.5.2",
2023-05-30 23:23:34 +02:00
"strip-indent": "^3.0.0",
2023-06-19 22:38:41 +02:00
"stylelint": "^15.8.0",
"stylelint-config-standard-scss": "^9.0.0",
2023-03-07 18:15:27 +01:00
"truncate-html": "^1.0.4",
2023-02-26 02:07:51 +01:00
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
2023-01-24 23:51:07 +01:00
"typogr": "^0.6.8"
2023-01-09 21:24:06 +01:00
},
"resolutions": {
"tslib": ">=2"
2022-12-12 23:07:23 +01:00
}
}