-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.26 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
{
"name": "zola_twcss",
"description": "This is a starter set for the [Zola](https://getzola.org) [static site generator (SSG)](https://www.jamstack.org/generators), based on the appearance of my website at [brycewray.com](https://www.brycewray.com).",
"private": true,
"scripts": {
"clean": "rimraf public && rimraf static/css static/js",
"initassets": "node initassets.js",
"start": "TAILWIND_MODE=watch NODE_ENV=development npm-run-all clean initassets --parallel dev:*",
"dev:css": "postcss assets/css/style.css -o ./static/css/style.css -w",
"dev:js": "NODE_ENV=development node copy.js",
"dev:serve": "zola serve",
"build": "NODE_ENV=production npm-run-all clean initassets prod:js prod:css prod:build",
"prod:css": "postcss assets/css/style.css -o ./static/css/style.css",
"prod:js": "NODE_ENV=production node copy.js",
"prod:build": "zola build"
},
"author": "",
"license": "MIT",
"browserslist": [
"last 4 versions",
"> 1%",
"maintained node versions"
],
"devDependencies": {
"autoprefixer": "^10.4.7",
"cssnano": "^5.1.11",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.1.0",
"rimraf": "^3.0.2",
"tailwindcss": "^3.0.24"
}
}