sass-site/package.json

102 lines
3.5 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-01-06 21:35:17 +01:00
"node": "^16",
"yarn": "^3"
2022-12-12 23:07:23 +01:00
},
2023-01-09 21:24:06 +01:00
"packageManager": "yarn@3.3.1",
2022-12-12 23:07:23 +01:00
"scripts": {
2023-01-06 22:40:29 +01:00
"serve": "run-p 'watch:**'",
2023-02-02 22:31:55 +01:00
"build": "REBUILD_VERSION_CACHE=true run-s build-dev:scripts 'build:**'",
"build-prod": "NETLIFY=true run-s build-prod:scripts 'build:**'",
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",
"watch:11ty": "yarn build:11ty --serve --incremental",
2023-01-09 20:48:04 +01:00
"tsc": "tsc",
"prettier": "prettier --write .",
2023-01-09 21:24:06 +01:00
"prettier:ci": "prettier --check .",
2023-01-09 21:15:35 +01:00
"eslint": "eslint --fix .",
2023-01-09 21:24:06 +01:00
"eslint:ci": "eslint .",
2023-01-09 23:19:15 +01:00
"stylelint": "stylelint '**/*.{css,scss}' --fix",
"stylelint:ci": "stylelint '**/*.{css,scss}'",
"lint": "run-s prettier eslint stylelint tsc",
"lint:ci": "run-s prettier:ci eslint:ci stylelint:ci tsc",
2022-12-12 23:07:23 +01:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"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.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
2023-01-06 23:35:10 +01:00
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
2023-01-06 23:35:10 +01:00
"@rollup/plugin-inject": "^5.0.3",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.3",
2023-05-24 22:49:22 +02:00
"@sindresorhus/slugify": "^1.1.0",
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-01-09 21:24:06 +01:00
"@types/node": "^16",
2023-03-08 21:59:19 +01:00
"@types/prismjs": "^1.26.0",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"date-fns": "^2.30.0",
"deep-equal": "^2.2.1",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"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-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-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.23.0",
"sass": "^1.62.1",
"semver-parser": "^4.1.4",
"stylelint": "^15.6.2",
"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.0.4",
2023-01-24 23:51:07 +01:00
"typogr": "^0.6.8"
2023-01-09 21:24:06 +01:00
},
"resolutions": {
"tslib": ">=2"
},
"yarn-upgrade-all": {
"ignore": [
2023-05-24 22:49:22 +02:00
"@sindresorhus/slugify",
2023-01-09 21:24:06 +01:00
"@types/node"
]
2022-12-12 23:07:23 +01:00
}
}