-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.18 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "netlify-serverless-gems",
"version": "1.0.0",
"description": "Discover the power of serverless with Netlify! 💻🌐 Build scalable and efficient web applications.",
"main": "index.html",
"scripts": {
"clean:site": "rimraf './_site'",
"debug:11ty": "DEBUG=Eleventy* npx @11ty/eleventy",
"watch:11ty": "npx @11ty/eleventy --serve --quiet",
"build:11ty": "npx @11ty/eleventy",
"build:js": "npx esbuild ./src/assets/js/main.js --outfile=./_site/js/main.$(git rev-parse --short HEAD).js --bundle --minify",
"watch:js": "npx esbuild ./src/assets/js/main.js --outfile=./_site/js/main.js --bundle --watch --sourcemap",
"watch:tailwind": "npx tailwindcss --postcss -i src/assets/css/main.css -o ./_site/css/main.css --watch",
"build:tailwind": "npx tailwindcss --postcss -i src/assets/css/main.css -o ./_site/css/main.css --minify",
"start": "ELEVENTY_ENV=development npm-run-all --parallel watch:*",
"build": "ELEVENTY_ENV=production npm-run-all --serial build:js build:tailwind build:11ty",
"debugstart": "DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet",
"benchmark": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"prettier:check": "npx prettier --check './src'",
"prettier:fix": "npx prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/serverless-gems/netlify-serverless-gems.git"
},
"keywords": [
"11ty",
"eleventy",
"alpinejs",
"tailwindcss",
"netlify",
"serverless",
"lambda"
],
"author": {
"name": "Alex Zappa",
"email": "[email protected]",
"url": "https://alex.zappa.dev/"
},
"contributors": [
{
"name": "Alex Zappa",
"email": "[email protected]",
"url": "https://alex.zappa.dev/"
}
],
"license": "MIT",
"private": true,
"bugs": {
"url": "https://github.com/serverless-gems/netlify-serverless-gems/issues"
},
"homepage": "https://github.com/serverless-gems/netlify-serverless-gems#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^4.0.2",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.12",
"alpinejs": "^3.13.8",
"autoprefixer": "^10.4.19",
"eleventy-plugin-phosphoricons": "^1.0.2",
"eleventy-plugin-svg-contents": "^0.7.0",
"esbuild": "^0.20.2",
"html-minifier": "^4.0.0",
"isbot": "^5.1.4",
"luxon": "^3.4.4",
"markdown-it-anchor": "^8.6.7",
"netlify-plugin-11ty": "^1.4.0",
"npm-run-all": "^4.1.5",
"plausible-tracker": "^0.3.8",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"postcss-discard-comments": "^6.0.2",
"postcss-easy-import": "^4.0.0",
"postcss-merge-rules": "^6.1.1",
"prettier-plugin-tailwindcss": "^0.5.13",
"pretty-quick": "^4.0.0",
"prism-themes": "^1.9.0",
"prismjs": "^1.29.0",
"rimraf": "^5.0.5",
"slugify": "^1.6.6",
"tailwindcss": "^3.4.3"
},
"dependencies": {
"@sparticuz/chromium": "^123.0.1",
"puppeteer-core": "^22.6.4"
}
}