-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
{
"name": "eleventy-plus-vite",
"version": "1.2.0",
"type": "module",
"description": "A clean and simple Eleventy 2 Starter Kit with Vite",
"browserslist": [
"> 0.5%",
"not IE 11"
],
"scripts": {
"start": "npx @11ty/eleventy --serve",
"watch": "npx @11ty/eleventy --watch",
"serve": "npx @11ty/eleventy --serve",
"bench": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"build": "npx @11ty/eleventy",
"clean": "del-cli _site",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/matthiasott/11ty22.git"
},
"author": "Matthias Ott",
"license": "MIT",
"bugs": {
"url": "https://github.com/matthiasott/11ty22/issues"
},
"homepage": "https://github.com/matthiasott/11ty22#readme",
"devDependencies": {
"@11ty/eleventy": "^3.0.0-beta.1",
"@11ty/eleventy-img": "^4.0.2",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11ty/eleventy-plugin-vite": "^5.0.0-alpha.1",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.5",
"cssremedy": "^0.1.0-beta.2",
"del-cli": "^5.1.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"focus-visible": "^5.2.1",
"luxon": "^3.5.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.0.1",
"npm-run-all": "^4.1.5",
"postcss-nesting": "^13.0.0",
"rollup-plugin-critical": "^1.0.13",
"sass": "^1.77.8",
"vite": "^5.4.1"
}
}