-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.34 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
{
"name": "aws-bites-site",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm-run-all --parallel start:eleventy start:tailwind",
"start:eleventy": "eleventy --serve",
"start:tailwind": "tailwindcss -i src/_includes/styles/tailwind.css -o dist/style.css --watch",
"clean": "rimraf dist",
"build": "npm-run-all build:tailwind build:eleventy",
"build:eleventy": "NODE_ENV=production ELEVENTY_PRODUCTION=true eleventy",
"build:tailwind": "NODE_ENV=production tailwindcss -i src/_includes/styles/tailwind.css -o dist/style.css",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"@11ty/eleventy-fetch": "^3.0.0",
"@11ty/eleventy-img": "^4.0.2",
"@tailwindcss/typography": "^0.5.8",
"axios": "^1.2.1",
"eleventy-plugin-youtube-embed": "^1.7.1",
"eslint": "^8.29.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"html-minifier": "^4.0.0",
"husky": "^8.0.3",
"luxon": "^3.1.1",
"node-webvtt": "^1.9.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sharp": "^0.33.2",
"striptags": "^3.2.0",
"tailwindcss": "^3.2.4",
"yargs": "^17.7.2"
}
}