-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.4 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
{
"name": "rich.grundy.io",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -rf ./dist",
"asset:digest": "./bin/asset-digest",
"build": "npm-run-all clean build:css build:js asset:digest build:site",
"build:css": "NODE_ENV=production postcss ./src/assets/css/app.css -o ./dist/assets/css/app.css",
"build:js": "esbuild src/assets/js/*.js src/assets/js/*.jsx --jsx-factory=h --jsx-fragment=Fragment --bundle --minify --outdir=./dist/assets/js",
"build:site": "NODE_ENV=production eleventy",
"dev": "npm-run-all clean --parallel dev:*",
"dev:site": "NODE_ENV=developmnt eleventy --serve --port ${PORT:-8080}",
"dev:css": "postcss ./src/assets/css/app.css -o ./dist/assets/css/app.css --watch --verbose",
"dev:js": "esbuild src/assets/js/*.{js,jsx} --jsx-factory=h --jsx-fragment=Fragment --bundle --watch --outdir=./dist/assets/js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RichGuk/rich.grundy.io.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RichGuk/rich.grundy.io/issues"
},
"homepage": "https://github.com/RichGuk/rich.grundy.io#readme",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-preact": "^1.1.4",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0"
},
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"@11ty/eleventy-upgrade-help": "^2.0.5",
"@auth0/auth0-spa-js": "^1.19.1",
"@aws-sdk/client-s3": "^3.39.0",
"@aws-sdk/s3-request-presigner": "^3.39.0",
"@octokit/auth-app": "^3.6.1",
"@octokit/core": "^3.5.1",
"@serverless-jwt/netlify": "^0.2.1",
"browser-image-compression": "^1.0.16",
"cssnano": "^5.0.6",
"esbuild": "^0.13.4",
"glightbox": "^3.0.9",
"glob": "^7.2.0",
"html-minifier": "^4.0.0",
"luxon": "^1.27.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.9",
"postcss-cli": "^9.0.1",
"postcss-import": "^14.0.2",
"postcss-nested": "^5.0.5",
"postcss-preset-env": "^7.7.1",
"preact": "^10.5.15",
"sanitize.css": "^12.0.1",
"sharp-cli": "^4.2.0",
"slugify": "^1.6.6"
},
"browserslist": [
"last 1 version",
"> 1%"
]
}