-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 895 Bytes
/
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
{
"name": "useless-random-color-buttons",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"clean": "rm -rf _site",
"dev:css": "npx tailwindcss -i ./src/css/input.css -o ./_site/css/output.css --watch",
"dev:eleventy": "cross-env ELEVENTY_ENV=development npx @11ty/eleventy --serve --incremental",
"start": "npm-run-all --sequential clean --parallel dev:eleventy dev:css",
"build:css": "cross-env NODE_ENV=production npx tailwindcss -i ./src/css/input.css -o ./_site/css/output.css --minify",
"build:eleventy": "cross-env ELEVENTY_ENV=production npx @11ty/eleventy",
"build": "npm-run-all --sequential clean build:eleventy build:css"
},
"author": "anaurelian",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^1.0.0-beta.9",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.0.8"
}
}