-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 4.12 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "sass-docs-pt",
"version": "2.0.0",
"homepage": "https://sass-docs-pt.netlify.app/",
"title": "Sass",
"description": "Sass: Folhas de Estilo Sintaticamente Incríveis",
"repository": {
"type": "git",
"url": "https://github.com/nazarepiedady/sass-docs-pt.git"
},
"private": true,
"license": "MIT",
"engines": {
"node": "^16"
},
"scripts": {
"serve": "run-p 'watch:**'",
"build": "run-s clean-version-cache build-dev:scripts 'build:**'",
"build-prod": "run-s clean-version-cache build-prod:scripts 'build:**'",
"clean-version-cache": "rm -f source/_data/versionCache.json",
"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",
"build-dev:scripts": "rollup -c",
"build-prod:scripts": "NODE_ENV=production BABEL_ENV=production rollup -c",
"watch:scripts": "npm run build-dev:scripts -- -w",
"build:typedoc": "./tool/typedoc-build.sh",
"build:11ty": "NODE_OPTIONS='-r ts-node/register' eleventy",
"watch:11ty": "npm run build:11ty -- --serve --incremental",
"tsc": "tsc",
"gts": "gts fix",
"gts:ci": "gts lint",
"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}'",
"lint": "run-s prettier gts stylelint tsc",
"lint:ci": "run-s prettier:ci gts:ci stylelint:ci tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"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'",
"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'"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.7",
"@babel/preset-typescript": "^7.22.5",
"@codemirror/lang-sass": "^6.0.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-inject": "^5.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@sindresorhus/slugify": "^1.1.2",
"@types/deep-equal": "^1.0.1",
"@types/jquery": "^3.5.16",
"@types/jqueryui": "^1.12.17",
"@types/lodash": "^4.14.195",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-attrs": "^4.1.0",
"@types/markdown-it-footnote": "^3.0.0",
"@types/node": "^16",
"@types/prismjs": "^1.26.0",
"@types/seedrandom": "^3.0.5",
"@types/semver": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"cheerio": "^1.0.0-rc.12",
"codemirror": "^6.0.1",
"date-fns": "^2.30.0",
"deep-equal": "^2.2.2",
"eslint-plugin-prettier": "^5.0.0",
"gts": "^3.1.1",
"immutable": "^4.3.0",
"jquery": "^3.7.0",
"jquery-ui": "^1.13.2",
"js-yaml": "^4.1.0",
"kleur": "^4.1.5",
"liquidjs": "^10.8.4",
"lodash": "^4.17.21",
"lorem-ipsum": "^2.0.8",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.7",
"markdown-it-attrs": "^4.1.6",
"markdown-it-deflist": "^2.1.0",
"markdown-it-footnote": "^3.0.3",
"netlify-plugin-11ty": "^1.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"prismjs": "^1.29.0",
"rollup": "^3.26.2",
"sass": "^1.63.6",
"semver": "^7.5.3",
"stylelint": "^15.10.1",
"stylelint-config-standard-scss": "^10.0.0",
"truncate-html": "^1.0.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"typogr": "^0.6.8"
},
"dependencies": {
"seedrandom": "^3.0.5"
}
}