-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 975 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
24
25
26
27
28
29
30
{
"name": "aiga-awards-2019",
"license": "ISC",
"version": "1.0.0",
"description": "",
"author": "David Soards",
"scripts": {
"start": "npm run watch",
"build": "rm -rf dist && npm-run-all build:css build:html",
"build:html": "cross-env NODE_ENV=production eleventy",
"build:css": "cross-env NODE_ENV=production postcss src/site/_includes/css/tailwind.css -o src/site/css/styles.css",
"watch": "npm-run-all --parallel watch:css watch:html",
"watch:html": "eleventy --serve --port=8888",
"watch:css": "postcss src/site/_includes/css/tailwind.css -o src/site/css/styles.css --watch"
},
"dependencies": {
"@11ty/eleventy": "^0.10.0",
"@fullhuman/postcss-purgecss": "^2.0.6",
"cssnano": "^4.1.10",
"html-minifier": "^4.0.0",
"luxon": "^1.22.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.0",
"tailwindcss": "^1.2.0",
"terser": "^4.6.3"
},
"devDependencies": {
"cross-env": "^7.0.0"
}
}