-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.23 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": "faster-google",
"version": "1.0.0",
"description": "A light faster version of the Google homepage according to Google Lighthouse",
"main": "index.html",
"scripts": {
"dev": "npm run dev-eleventy",
"prod": "NODE_ENV=production npm run generate-eleventy",
"generate-eleventy": "npm run generate-postcss && node -r esm node_modules/.bin/eleventy --quiet",
"generate-postcss": "postcss src/styles/index.css --o static/index.css",
"dev-eleventy": "node -r esm node_modules/.bin/eleventy --watch --serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThatGuySam/faster-google.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ThatGuySam/faster-google/issues"
},
"homepage": "https://github.com/ThatGuySam/faster-google#readme",
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"@navillus/eleventy-plugin-inline-css": "^1.0.3",
"esm": "^3.2.25",
"html-minifier": "^4.0.0",
"netlify-plugin-csp-generator": "^1.2.2",
"postcss": "^8.2.10",
"postcss-cli": "^8.3.1",
"posthtml": "^0.15.1",
"posthtml-minify-classnames": "^0.2.3",
"tailwindcss": "^2.0.3"
},
"dependencies": {
"autoprefixer": "^10.2.4"
}
}