generated from 11ty/eleventy-base-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.83 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.83 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "my-site",
"version": "0.0.5",
"description": "My personal website",
"scripts": {
"clean": "rm -rf _site",
"hasher": "node ./lib/scripts/csshash.js",
"cssmin": "node ./lib/scripts/cssmin.js",
"ts": "tsc",
"build": "npm-run-all ts clean hasher -p build:*",
"build:eleventy": "ELEVENTY_ENV=production eleventy",
"build:sass": "sass src/assets/css/index.scss _site/assets/css/index.css && npm run cssmin",
"dev": "npm-run-all ts 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",
"debug": "DEBUG=* eleventy"
},
"repository": {
"type": "git",
"url": "https://github.com/moody-person/my-site"
},
"author": {
"name": "Andrey Parfenov",
"email": "asleeppiano@outlook.com",
"url": "https://andreyparfenov.com"
},
"license": "MIT",
"homepage": "https://andreyparfenov.com",
"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",
"@types/node-fetch": "^2.5.12",
"autoprefixer": "^10.2.5",
"axios": "^0.25.0",
"clean-css": "^5.2.2",
"fp-ts": "^2.11.8",
"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",
"node-fetch": "^2.6.7",
"npm-run-all": "^4.1.5",
"rollup": "^2.63.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.46.0",
"typescript": "^4.5.5"
}
}