generated from osmoscraft/osmosfeed-template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
35 lines (35 loc) · 859 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
35
{
"name": "planet",
"version": "0.6.1",
"description": "RSS Aggregator built using 11ty.js and tailwindcss",
"main": "index.js",
"scripts": {
"clean": "rimraf public",
"dev": "npm run clean && eleventy --serve",
"build": "npm run clean && NODE_ENV=production eleventy",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"planet",
"11ty",
"rss"
],
"homepage": "https://github.com/ILUGD/planet",
"bugs": {
"url": "https://github.com/ILUGD/planet/issues"
},
"author": "",
"license": "MIT",
"devDependencies": {
"rimraf": "^4.1.1"
},
"dependencies": {
"feedme": "^2.0.2",
"@11ty/eleventy": "^0.12.1",
"eleventy-plugin-tailwindcss": "^0.3.0",
"axios": "^1.2.3",
"eleventy-plugin-metagen": "^1.6.1",
"lodash": "^4.17.21",
"moment": "^2.29.4"
}
}