-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 921 Bytes
/
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
{
"name": "eleventy-i18n",
"version": "2.0.0",
"description": "Minimal starter for localized content, using Eleventy's own Internationalization (I18n) plugin",
"license": "ISC",
"type": "module",
"author": {
"name": "Lene Saile",
"url": "https://www.lenesaile.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/11ty/eleventy-i18n.git"
},
"engines": {
"node": ">=18.x.x"
},
"scripts": {
"watch:sass": "sass --watch src/assets/sass:dist/assets/css",
"build:sass": "sass src/assets/sass:dist/assets/css",
"watch:eleventy": "eleventy --serve",
"build:eleventy": "eleventy",
"start": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:*"
},
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.2"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"sass": "^1.83.0"
}
}