-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.72 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
35
36
37
38
39
40
41
42
43
44
{
"private": true,
"scripts": {
"build": "\"$npm_execpath\" run prep && \"$npm_execpath\" run css:prod && cross-env ELEVENTY_ENV=prod eleventy",
"css:dev": "tailwindcss -c tailwind.config.js -i src/css/stylesheet.css -o dist/stylesheet-new.css --watch",
"css:prod": "tailwindcss -c tailwind.config.js -i src/css/stylesheet.css -o dist/stylesheet-new.css --minify",
"dev": "\"$npm_execpath\" run prep && concurrently '\"$npm_execpath\" run css:dev' 'cross-env ELEVENTY_ENV=dev eleventy --serve'",
"fonts": "copy-fission-fonts src/fonts/ --woff2",
"images": "copy-fission-images src/images/kit/",
"lint": "eslint . --ext .js --cache",
"prep": "\"$npm_execpath\" run fonts && \"$npm_execpath\" run images",
"start": "\"$npm_execpath\" run dev",
"test": "\"$npm_execpath\" run build"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"@11ty/eleventy-img": "^3.0.0",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@tryghost/content-api": "^1.5.7",
"@tryghost/helpers": "^1.1.46",
"autoprefixer": "^10.2.6",
"clean-css": "^5.1.2",
"concurrently": "^6.2.0",
"cross-env": "^7.0.0",
"dotenv": "^16.0.3",
"eleventy-plugin-lazyimages": "^2.1.2",
"eleventy-plugin-local-images": "fission-codes/eleventy-plugin-local-images#master",
"eleventy-plugin-svg-contents": "^0.7.0",
"eslint": "7.28.0",
"eslint-plugin-ghost": "2.3.0",
"eslint-utils": "3.0.0",
"html-minifier": "^4.0.0",
"jsdom": "^15.1.1"
},
"dependencies": {
"@11ty/eleventy-cache-assets": "^2.3.0",
"@fission-suite/kit": "^1.1.1",
"@tailwindcss/typography": "^0.5.9",
"airtable": "^0.11.6",
"daisyui": "^2.45.0",
"markdown-it": "^13.0.1",
"tailwindcss": "^3.2.1"
}
}