-
Notifications
You must be signed in to change notification settings - Fork 319
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "tiny-helpers",
"version": "1.0.0",
"description": "A collection of free single-purpose online tools for web developers...",
"main": "index.js",
"scripts": {
"setup:feeds": "node ./scripts/create-feeds.js",
"setup": "concurrently \"npm:setup:*\"",
"helper:add": "node ./scripts/add-helper.js",
"dev": "eleventy --serve",
"prebuild": "npm run setup",
"build": "eleventy --input=./site",
"deploy": "npm run build && now --prod",
"checkly:test": "npx checkly test",
"checkly:deploy": "npx checkly deploy --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stefanjudis/tiny-helpers.git"
},
"engines": {
"node": "^18"
},
"keywords": [],
"author": "stefan judis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stefanjudis/tiny-helpers/issues"
},
"homepage": "https://github.com/stefanjudis/tiny-helpers#readme",
"dependencies": {
"@11ty/eleventy": "^0.10.0",
"@sparticuz/chromium-min": "^115.0.0",
"concurrently": "^5.1.0",
"copy-dir": "^1.3.0",
"feed": "^4.1.0",
"got": "^10.7.0",
"html-minifier": "^4.0.0",
"inquirer": "^7.1.0",
"jimp": "^0.9.5",
"now": "^17.1.1",
"p-limit": "^2.2.2",
"postcss": "^7.0.27",
"postcss-clean": "^1.1.0",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.2.1",
"puppeteer": "^10.1.0",
"puppeteer-core": "^21.0.2",
"slugify": "^1.4.0",
"terser": "^4.6.7"
},
"devDependencies": {
"@checkly/cli": "^0.3.5"
}
}