forked from stefanjudis/tiny-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.93 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
{
"name": "tiny-helpers",
"version": "1.0.0",
"description": "A collection of single-purpose online tools for web developers",
"main": "index.js",
"scripts": {
"setup:screenshots": "node ./scripts/create-screenshots.js",
"setup:feeds": "node ./scripts/create-feeds.js",
"setup": "concurrently \"npm:setup:*\"",
"helper:add": "node ./scripts/add-helper.js",
"dev:css": "postcss ./css/index.css -wo ./site/_includes/main.css -u postcss-import postcss-nested postcss-clean",
"dev:javascript": "rollup -cw",
"dev:html": "eleventy --input=./site --output=./_site --serve",
"dev": "concurrently \"npm:dev:*\"",
"prebuild": "npm run setup",
"build:css": "postcss ./css/index.css -o ./site/_includes/main.css -u postcss-import postcss-nested postcss-clean --no-map",
"build:javascript": "NODE_ENV=production rollup -c",
"build": "concurrently \"npm:build:*\" && eleventy --input=./site --output=./_site",
"deploy": "npm run build && now --prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stefanjudis/tiny-helpers.git"
},
"engines": {
"node": "~12.14"
},
"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",
"concurrently": "^5.0.2",
"feed": "^4.1.0",
"got": "^10.2.2",
"html-minifier": "^4.0.0",
"inquirer": "^7.0.1",
"jimp": "^0.9.3",
"now": "^16.7.3",
"postcss-clean": "^1.1.0",
"postcss-cli": "^6.1.3",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.2.1",
"puppeteer": "^2.0.0",
"rollup": "^1.27.14",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.3",
"slugify": "^1.3.6"
},
"devDependencies": {}
}