-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1019 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
{
"name": "senior-celebration",
"scripts": {
"build": "NODE_ENV=production npm-run-all build:css build:html",
"build:css": "postcss src/_includes/css/styles.css -o src/css/styles.css",
"build:html": "eleventy",
"watch": "npm-run-all --parallel watch:css watch:html",
"watch:css": "postcss src/_includes/css/styles.css -o src/css/styles.css --watch",
"watch:html": "eleventy --serve",
"prebuild": "npm run clean",
"clean": "rimraf _site",
"start": "npm run watch",
"deploy": "gh-pages -d _site -b site",
"predeploy": "CI=true npm run build"
},
"dependencies": {
"@11ty/eleventy": "^0.10.0",
"autoprefixer": "^9.7.6",
"cssnano": "^4.1.10",
"gh-pages": "^2.2.0",
"html-minifier": "^4.0.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.19",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"papaparse": "^5.2.0",
"postcss-cli": "^7.1.1",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.2.1",
"tailwindcss": "^1.4.6"
}
}