-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 948 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
31
32
33
{
"name": "zebcodes-11ty",
"private": true,
"version": "1.0.0",
"description": "Portfolio website",
"scripts": {
"dev": "npm run watch",
"build": "cross-env NODE_ENV=production run-s build:css build:html",
"build:css": "postcss src/_includes/css/styles.css -o src/css/styles.css",
"build:html": "eleventy",
"watch": "run-p watch:*",
"watch:css": "npm run build:css -- --watch",
"watch:html": "eleventy --serve",
"prebuild": "npm run clean",
"predev": "npm run clean",
"clean": "rimraf _site",
"start": "npm run dev"
},
"author": "Zeb Pykosz",
"dependencies": {
"@11ty/eleventy": "^0.11.0",
"autoprefixer": "^9.8.6",
"cross-env": "^7.0.2",
"cssnano": "^4.1.10",
"markdown-it": "^11.0.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.2",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.2.3",
"rimraf": "^3.0.2",
"tailwindcss": "^1.8.5"
}
}