-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.27 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "www.ovl.design",
"version": "11.1.0",
"description": "My homepage",
"main": ".eleventy.js",
"scripts": {
"build": "ELEVENTY_ENV=production eleventy",
"build:clean": "npm run clean && npm run build",
"build:debug": "npm run build --debug",
"clean": "rimraf dist",
"lint": "concurrently \"npm:lint:*\"",
"lint:css": "stylelint '**/*.pcss' --fix",
"lint:js": "eslint \"**/*.{js,vue,mjs}\" --ignore-pattern 'node_modules/**/*' --fix",
"serve": "ELEVENTY_ENV=development eleventy --serve --quiet --incremental --port 7777",
"test": "ava",
"prepare": "node scripts/prepare.js"
},
"engines": {
"node": "20"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ovlb/www.ovl.design.git"
},
"author": "ovl",
"license": "MIT",
"bugs": {
"url": "https://github.com/ovlb/www.ovl.design/issues"
},
"homepage": "https://github.com/ovlb/www.ovl.design#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-fetch": "^3.0.0",
"@11ty/eleventy-img": "^3.1.1",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"@11ty/eleventy-plugin-vue": "^1.0.0-canary.8",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@inframanufaktur/eleventy-plugin-clean-urls": "^1.0.2",
"@inframanufaktur/eleventy-plugin-embed-mastodon": "^0.4.0",
"@quasibit/eleventy-plugin-sitemap": "^2.2.0",
"@rollup/plugin-alias": "^3.1.8",
"autoprefixer": "^10.4.16",
"ava": "^4.3.3",
"axios": "^0.24.0",
"concurrently": "^6.4.0",
"contentful": "^9.1.18",
"csso": "^5.0.0",
"del": "^6.0.0",
"dotenv": "^10.0.0",
"eleventy-plugin-embed-tweet": "^0.3.3",
"eleventy-plugin-webmentions": "^1.1.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^8.2.0",
"feed": "^4.2.2",
"html-minifier": "^4.0.0",
"husky": "^7.0.0",
"is-ci": "^3.0.1",
"linkedom": "^0.13.7",
"lint-staged": "^14.0.1",
"markdown-it": "^12.3.2",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^8.4.1",
"markdown-it-attribution": "^0.1.4",
"markdown-it-attrs": "^4.1.3",
"markdown-it-container": "^3.0.0",
"markdown-it-footnote": "^3.0.3",
"markdown-it-image-figures": "^2.0.0",
"markdown-it-prism": "^2.2.2",
"netlify-plugin-11ty": "^1.1.0",
"open-props": "^1.3.16",
"postcss": "^8.4.31",
"postcss-custom-media": "^10.0.2",
"postcss-import": "^15.1.0",
"postcss-jit-props": "^1.0.13",
"postcss-mixins": "^9.0.4",
"postcss-nested": "^6.0.1",
"prettier": "^3.0.3",
"rollup": "^2.61.0",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.3",
"stylelint-prettier": "^4.0.2",
"uuid": "^9.0.0"
},
"lint-staged": {
"**/*.{js,vue,mjs}": [
"eslint --fix"
],
"_src/**/*.(p)?css": [
"stylelint --fix"
]
},
"dependencies": {
"@netlify/functions": "^0.10.0",
"simple-git": "^3.20.0",
"textics": "^1.2.0",
"vue-material-design-icons": "^5.0.0"
}
}