-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.31 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.31 KB
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
{
"name": "garden-posters",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch:css": "esbuild --bundle src/css/index.css --outfile=dist/css/main.css --minify --watch",
"build:css": "esbuild --bundle src/css/index.css --outfile=dist/css/main.css --minify",
"watch:eleventy": "eleventy --serve --port=8081",
"build:eleventy": "eleventy",
"social-images": "node functions/generate-social-images.js",
"watch": "npm-run-all --parallel watch:*",
"build": "npm-run-all build:* ; node functions/generate-social-images.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@georgedoescode/generative-utils": "^1.0.38",
"@georgedoescode/vector2d": "^1.0.7",
"@svgdotjs/svg.js": "^3.1.2",
"bezier-js": "^6.1.0",
"chrome-aws-lambda": "^10.1.0",
"clean-css": "^5.3.0",
"puppeteer-core": "^13.6.0",
"stream": "0.0.2",
"svg-arc-to-cubic-bezier": "^3.2.0",
"svg.js": "^2.7.1",
"svgdom": "^0.1.10",
"svgo": "^2.8.0",
"terser": "^5.12.1"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"dotenv": "^16.0.0",
"esbuild": "^0.14.38",
"npm-run-all": "^4.1.5",
"prettier-plugin-nunjucks": "git+ssh://git@github.com/justrhysism/prettier-plugin-nunjucks.git",
"puppeteer": "^13.6.0"
}
}