-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 2.01 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
{
"name": "artwork",
"version": "1.0.0",
"description": "Perrin's Artwork",
"scripts": {
"banner": "node_modules/figlet-cli/bin/figlet -f Cybermedium",
"develop-css": "tailwindcss -i ./src/_includes/css/global.css -o build/global.css --watch",
"develop-eleventy": "npx @11ty/eleventy --serve",
"develop-eleventy-debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve",
"develop": "concurrently -n css,11ty npm:develop-css npm:develop-eleventy",
"develop-debug": "concurrently -n css,11ty npm:develop-css npm:develop-eleventy-debug",
"build-css": "tailwindcss -i ./src/_includes/css/global.css -o build/global.css --minify",
"build-eleventy": "NODE_ENV=production npx @11ty/eleventy",
"build-eleventy-color": "NODE_ENV=production COLOR_PORTFOLIO=1 npx @11ty/eleventy --output=dist/color --pathprefix=color/",
"build": "npm run build-css && npm run build-eleventy",
"build-color": "npm run build-css && npm run build-eleventy-color",
"test-find-null": "[ -z \"`find dist -size 0`\" ] || (find dist -size 0 | sed 's/^/*** Error: Empty file: /' && exit 1)",
"test-http-server": "npx http-server -p 8081 ./dist",
"test-linkinator": "npx linkinator http://0.0.0.0:8081 --skip '^https://(www.linkedin.com|perrins-art.com)/' --recurse",
"test-check-links": "concurrently -n http-server,linkinator --kill-others --success first npm:test-http-server npm:test-linkinator",
"test": "(npm run test-find-null && npm run test-check-links && npm run banner Success) || npm run banner Error"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@11ty/eleventy": "3.0.0-alpha.4",
"@11ty/eleventy-img": "^3.1.8",
"@quasibit/eleventy-plugin-sitemap": "^2.2.0",
"concurrently": "^8.2.2",
"favicons": "^7.1.5",
"figlet-cli": "^0.1.1",
"hammerjs": "^2.0.8",
"html-minifier-terser": "^7.2.0",
"http-server": "^14.1.1",
"image-size": "^1.1.1",
"linkinator": "^6.0.4",
"outdent": "^0.8.0",
"tailwindcss": "^3.4.1"
}
}