-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.35 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
{
"name": "tatiana-fokina-website",
"description": "",
"author": "Tatiana Fokina",
"license": "ISC",
"scripts": {
"_watch": "npm-run-all --parallel watch:*",
"watch:js": "rollup -c -w",
"watch:11ty": "eleventy --serve",
"watch:sass": "sass src/styles/styles.scss:dist/styles/styles.css --watch",
"_build+deploy": "npm-run-all _build _deploy",
"_build": "npm-run-all build:* && eleventy && pnpm build:html",
"_deploy": "type nul > ./dist/.nojekyll && gh-pages --dist dist --dotfiles true",
"build:sass": "sass --no-source-map src/styles/styles.scss:dist/styles/styles.css",
"build:lightningcss": "npx lightningcss-cli --minify --bundle dist/styles/styles.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"
},
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^4.0.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"gh-pages": "^6.1.1",
"html-minifier": "^4.0.0",
"lightningcss-cli": "^1.24.1",
"npm-run-all": "^4.1.5",
"nunjucks": "^3.2.4",
"rimraf": "^5.0.5",
"rollup": "^4.14.2",
"sass": "^1.75.0"
}
}