-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.69 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
{
"name": "jam11ty",
"version": "0.0.5",
"description": "Static site Generator theme based out of 11ty",
"main": "/_dist/index.html",
"dependencies": {
"@11ty/eleventy": "^0.10.0",
"@11ty/eleventy-plugin-rss": "^1.0.6",
"@11ty/eleventy-plugin-syntaxhighlight": "^2.0.3",
"@polymer/paper-drawer-panel": "^3.0.2",
"@tbranyen/jsdom": "^13.0.0",
"clean-css": "^4.2.3",
"concurrently": "^4.1.0",
"countup.js": "^2.0.5",
"eleventy-plugin-pwa": "^1.0.8",
"html-minifier": "^4.0.0",
"semver": "^6.3.0",
"slugify": "^1.3.4",
"terser": "^4.6.7"
},
"devDependencies": {
"@erquhart/rollup-plugin-node-builtins": "^2.1.5",
"bl": "^3.0.0",
"chokidar-cli": "^2.0.0",
"cross-env": "^5.2.0",
"make-dir-cli": "^2.0.0",
"rollup": "^1.16.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.3"
},
"scripts": {
"cms:precompile": "make-dir dist/admin && nunjucks-precompile src/_includes > dist/admin/templates.js -i \"\\.(njk|css|svg)$\"",
"cms:bundle": "rollup --config",
"start": "concurrently \"npm run cms:bundle -- --watch\" \"chokidar \\\"src/_includes/**\\\" -c \\\"npm run cms:precompile\\\"\" \"npm run serve\"",
"serve": "cross-env ELEVENTY_ENV=development npx eleventy --serve",
"production": "npm run cms:precompile && npm run cms:bundle && npx eleventy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Andrewrico/Jam11ty.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Andrewrico/Jam11ty/issues"
},
"homepage": "https://github.com/Andrewrico/Jam11ty#readme"
}