forked from aelmosalamy/thesoc.club
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 905 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
{
"name": "cyberenthusiasts-home",
"version": "1.0.0",
"description": "Homepage for the CyberEnthusiasts community including members, FAQs, and initiatives!",
"scripts": {
"start": "run-p start:*",
"start:eleventy": "eleventy --serve",
"start:postcss": "postcss src/styles/*.css --dir _site --watch",
"build": "run-s clean build:eleventy build:postcss",
"build:eleventy": "cross-env ELEVENTY_PRODUCTION=true eleventy",
"build:postcss": "cross-env NODE_ENV=production postcss src/styles/*.css --dir _site",
"clean": "rimraf _site"
},
"author": "Adham Elmosalamy",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"cssnano": "^6.0.1",
"html-minifier": "^4.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.27",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"rimraf": "^5.0.1",
"tailwindcss": "^3.3.3"
}
}