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:**'",
|
2023-06-16 23:43:18 +02:00
|
|
|
"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:**'",
|
2023-06-16 23:43:18 +02:00
|
|
|
"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",
|
2023-06-27 22:59:10 +02:00
|
|
|
"build-prod:scripts": "NODE_ENV=production BABEL_ENV=production rollup -c",
|
2023-01-06 23:35:10 +01:00
|
|
|
"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 21:07:38 +02:00
|
|
|
"checklinks:internal": "npx --yes --package=hyperlink -- 'hyperlink --canonicalroot https://sass-lang.com/ --root _site/ -r -p -i --skip \"fragment-redirect\" --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": {
|
2023-04-03 10:05:53 +02:00
|
|
|
"@11ty/eleventy": "^2.0.1",
|
2023-04-04 20:22:44 +02:00
|
|
|
"@11ty/eleventy-plugin-rss": "^1.2.0",
|
2023-04-17 10:05:39 +02:00
|
|
|
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
|
2023-07-17 23:06:32 +02:00
|
|
|
"@babel/core": "^7.22.9",
|
2023-07-31 22:53:50 +02:00
|
|
|
"@babel/preset-env": "^7.22.9",
|
2023-06-12 10:06:28 +02:00
|
|
|
"@babel/preset-typescript": "^7.22.5",
|
2023-06-19 22:45:07 +02:00
|
|
|
"@codemirror/lang-sass": "^6.0.2",
|
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",
|
2023-06-06 02:33:25 +02:00
|
|
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
2023-05-22 10:05:54 +02:00
|
|
|
"@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",
|
2023-05-22 10:05:54 +02:00
|
|
|
"@types/jqueryui": "^1.12.17",
|
2023-08-15 01:57:13 +02:00
|
|
|
"@types/lodash": "^4.14.197",
|
2023-08-15 02:04:51 +02:00
|
|
|
"@types/markdown-it": "^13.0.0",
|
2023-03-08 21:59:19 +01:00
|
|
|
"@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-27 22:59:10 +02:00
|
|
|
"@types/seedrandom": "^3.0.5",
|
2023-06-19 23:55:26 +02:00
|
|
|
"@types/semver": "^7.5.0",
|
2023-08-07 23:01:07 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.3.0",
|
2023-05-29 10:06:09 +02:00
|
|
|
"cheerio": "^1.0.0-rc.12",
|
2023-06-02 15:24:32 +02:00
|
|
|
"codemirror": "^6.0.1",
|
2023-05-01 10:05:25 +02:00
|
|
|
"date-fns": "^2.30.0",
|
2023-07-17 22:57:21 +02:00
|
|
|
"deep-equal": "^2.2.2",
|
2023-07-18 03:17:34 +02:00
|
|
|
"eslint-plugin-prettier": "^5.0.0",
|
2023-08-07 22:47:02 +02:00
|
|
|
"gts": "^5.0.0",
|
2023-07-31 22:52:05 +02:00
|
|
|
"immutable": "^4.3.1",
|
2023-05-15 10:05:32 +02:00
|
|
|
"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-07-17 22:58:12 +02:00
|
|
|
"liquidjs": "^10.8.4",
|
2023-06-10 18:31:43 +02:00
|
|
|
"lodash": "^4.17.21",
|
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-07-08 04:26:38 +02:00
|
|
|
"netlify-plugin-11ty": "^1.4.0",
|
2023-01-06 22:40:29 +01:00
|
|
|
"npm-run-all": "^4.1.5",
|
2023-08-15 01:54:30 +02:00
|
|
|
"prettier": "^3.0.1",
|
2023-03-07 21:45:47 +01:00
|
|
|
"prismjs": "^1.29.0",
|
2023-08-07 22:46:19 +02:00
|
|
|
"rollup": "^3.27.2",
|
2023-08-15 02:04:25 +02:00
|
|
|
"sass": "^1.65.1",
|
2023-06-28 00:50:48 +02:00
|
|
|
"semver": "^7.5.3",
|
2023-08-15 01:59:15 +02:00
|
|
|
"stylelint": "^15.10.2",
|
2023-07-08 05:57:44 +02:00
|
|
|
"stylelint-config-standard-scss": "^10.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",
|
2023-07-08 05:57:37 +02:00
|
|
|
"typescript": "^5.1.6",
|
2023-01-24 23:51:07 +01:00
|
|
|
"typogr": "^0.6.8"
|
2023-06-27 22:59:10 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"seedrandom": "^3.0.5"
|
2022-12-12 23:07:23 +01:00
|
|
|
}
|
|
|
|
}
|