forked from awsbites/aws-bites-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.24 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
{
"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"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"@11ty/eleventy-fetch": "^3.0.0",
"@11ty/eleventy-img": "^2.0.1",
"@tailwindcss/typography": "^0.5.2",
"axios": "^0.27.2",
"eleventy-plugin-youtube-embed": "^1.7.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"html-minifier": "^4.0.0",
"luxon": "^2.4.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.7.1",
"sharp": "^0.30.6",
"striptags": "^3.2.0",
"tailwindcss": "^3.0.24"
}
}