sass-site/package.json

91 lines
3.0 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-06 23:37:45 +01:00
"type": "module",
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-01-29 21:04:56 +01:00
"build:11ty": "eleventy",
"watch:11ty": "eleventy --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.0",
2023-01-31 20:18:33 +01:00
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
2023-01-06 23:35:10 +01:00
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
2023-01-09 20:48:04 +01:00
"@babel/preset-typescript": "^7.18.6",
2023-01-06 23:35:10 +01:00
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
2023-01-06 23:35:10 +01:00
"@rollup/plugin-inject": "^5.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
2023-01-09 20:48:04 +01:00
"@types/jquery": "^3.5.16",
"@types/jqueryui": "^1.12.16",
2023-01-09 21:24:06 +01:00
"@types/node": "^16",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
2023-01-26 21:56:20 +01:00
"date-fns": "^2.29.3",
2023-02-03 23:58:02 +01:00
"deep-equal": "^2.2.0",
"eslint": "^8.34.0",
2023-01-09 21:15:35 +01:00
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
2023-01-06 23:35:10 +01:00
"jquery": "^3.6.3",
"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-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.4",
"rollup": "^3.17.2",
"sass": "^1.58.3",
"semver-parser": "^4.1.2",
"stylelint": "^15.2.0",
"stylelint-config-standard-scss": "^7.0.1",
"typedoc": "^0.23.25",
"typescript": "^4.9.5",
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": [
"@types/node"
]
2022-12-12 23:07:23 +01:00
}
}