-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 2.08 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
57
58
{
"name": "blog",
"version": "0.1.0",
"description": "fragosti's blog",
"author": "fragosti",
"license": "MIT",
"browserslist": "> 0.5%, last 2 versions, not dead, not IE 11",
"repository": {
"type": "git",
"url": "https://github.com/fragosti/blog"
},
"scripts": {
"clean": "run-s clean:*",
"clean:cache": "rimraf ./.cache",
"clean:site": "rimraf ./dist",
"build": "run-s clean build:*",
"build:html": "cross-env ELEVENTY_ENV=production eleventy",
"build:assets": "cross-env NODE_ENV=production parcel build ./src/assets/*/*.{js,css,jpg,png,svg} --dist-dir ./dist/assets --no-source-maps",
"watch": "run-s clean:* && run-p watch:*",
"watch:html": "cross-env ELEVENTY_ENV=development eleventy --serve --port=8080",
"watch:assets": "cross-env NODE_ENV=development parcel watch ./src/assets/*/*.{js,css,jpg,png,svg} --dist-dir ./dist/assets --no-source-maps --no-hmr",
"start": "yarn watch",
"prettier": "prettier --write '{.,src/**}/*.{js,md,json}' --config .prettierrc"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.3",
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"autoprefixer": "^10.4.0",
"cross-env": "^7.0.3",
"eleventy-plugin-embed-tweet": "^0.3.1",
"eleventy-plugin-lazyimages": "^2.1.2",
"eleventy-plugin-typeset": "github:liamfiddler/eleventy-plugin-typeset",
"eleventy-plugin-youtube-embed": "^1.6.5",
"fs": "0.0.1-security",
"html-minifier": "^4.0.0",
"markdown-it": "^12.3.0",
"markdown-it-anchor": "^8.4.1",
"markdown-it-attrs": "^4.1.1",
"markdown-it-link-attributes": "^4.0.0",
"moment": "^2.29.1",
"npm-run-all": "^4.1.5",
"parcel": "^2.0.1",
"parcel-plugin-imagemin": "^4.0.2",
"postcss": "^8.4.5",
"postcss-nested": "^4.2.3",
"prettier": "^2.5.1",
"rimraf": "^3.0.1",
"tailwindcss": "^3.0.7"
},
"dependencies": {
"stimulus": "^3.0.1",
"turbolinks": "^5.2.0"
}
}