-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.93 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
{
"name": "vasiliy-dudin-website",
"description": "",
"author": "Vasiliy Dudin",
"license": "ISC",
"scripts": {
"watch": "npm-run-all --parallel _watch:*",
"build": "cross-env-shell ELEVENTY_ENV=production \"npm-run-all _build:* && eleventy && pnpm _build:html\"",
"deploy": "type nul > ./dist/.nojekyll && gh-pages --dist dist --dotfiles",
"build+deploy": "npm-run-all build deploy",
"_watch:11ty": "eleventy --serve",
"_watch:sass": "sass --watch --style=expanded src/styles/bundle.sass:dist/styles/bundle.css",
"_watch:js": "rollup -c -w",
"_build:sass": "sass --no-source-map src/styles/bundle.sass:dist/styles/bundle.css",
"_build:lightningcss": "npx lightningcss-cli --minify --bundle dist/styles/bundle.css -d dist/styles",
"_build:js": "rollup -c",
"_build:html": "html-minifier --input-dir dist --output-dir dist --file-ext html --collapse-whitespace --remove-comments --minify-css true --minify-js true",
"_remove-dist": "rimraf dist",
"tokens": "npx token-transformer src/design-tokens/figma-tokens.json src/design-tokens/sd-tokens.json --expandTypography --resolveReferences false && npx style-dictionary build --config sd.config.js"
},
"dependencies": {
"@11ty/eleventy": "3.0.0",
"@11ty/eleventy-img": "^6.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@uncenter/eleventy-plugin-toc": "^1.0.3",
"cross-env": "^7.0.3",
"fs-extra": "^11.3.0",
"gh-pages": "^6.3.0",
"html-minifier": "^4.0.0",
"js-yaml": "^4.1.0",
"lightningcss-cli": "^1.29.1",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"npm-run-all": "^4.1.5",
"nunjucks": "^3.2.4",
"path": "^0.12.7",
"rimraf": "^6.0.1",
"rollup": "^4.34.4",
"sass": "^1.84.0",
"style-dictionary": "^4.3.2",
"token-transformer": "^0.0.33"
}
}