forked from anparfenov/11ty-starter
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.96 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
{
"name": "11ty-starter",
"version": "0.0.1",
"description": "eleventy starter",
"scripts": {
"clean": "rm -rf _site",
"hasher": "node csshash.js",
"cssmin": "node cssmin.js",
"build": "npm-run-all clean hasher -p build:eleventy build:sass build:rollup",
"build:github": "npm-run-all clean hasher -p build:eleventy:pathPrefix build:sass build:rollup",
"build:eleventy": "ELEVENTY_ENV=production eleventy",
"build:eleventy:pathPrefix": "ELEVENTY_ENV=production eleventy --pathprefix=11ty-starter",
"build:sass": "sass src/assets/css/index.scss _site/assets/css/index.css && npm run cssmin",
"build:rollup": "NODE_ENV=production rollup -c",
"dev": "npm-run-all clean hasher -p dev:*",
"dev:sass": "sass --watch src/assets/css/index.scss _site/assets/css/index.css",
"dev:eleventy": "ELEVENTY_ENV=development eleventy --serve --port=3000",
"dev:rollup": "rollup -c -w",
"debug": "DEBUG=* eleventy"
},
"repository": {
"type": "git",
"url": "https://github.com/moody-person/11ty-starter"
},
"author": {
"name": "Andrey Parfenov",
"email": "asleeppiano@outlook.com",
"url": "https://andreyparfenov.com"
},
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"autoprefixer": "^10.2.5",
"clean-css": "^5.2.2",
"luxon": "^2.3.0",
"markdown-it": "^12.0.4",
"markdown-it-anchor": "^8.4.1",
"markdown-it-container": "^3.0.0",
"nanoid": "^3.1.30",
"npm-run-all": "^4.1.5",
"rollup": "^2.63.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.46.0"
},
"dependencies": {
"animejs": "^3.2.1"
}
}