-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
56 lines (56 loc) · 1.58 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
{
"name": "webmention-analytics",
"version": "0.1.0",
"description": "Analytics of webmention.io data",
"browserslist": [
"defaults"
],
"scripts": {
"start": "npm run dev",
"dev": "run-s clean eleventy:dev --print-label",
"build": "run-s clean eleventy:prod --print-label",
"eleventy:dev": "cross-env ELEVENTY_ENV=development eleventy --serve",
"eleventy:prod": "cross-env ELEVENTY_ENV=production eleventy",
"clean": "del-cli dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/maxboeck/webmention-analytics"
},
"author": "Max Böck",
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^0.11.1",
"@11ty/eleventy-navigation": "^0.1.6",
"@11ty/eleventy-plugin-rss": "^1.0.9",
"@babel/core": "^7.11.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"babel-loader": "^8.2.2",
"chartist": "^0.11.4",
"chartist-plugin-tooltips": "0.0.17",
"clean-css": "^4.2.3",
"critical": "^2.0.3",
"cssesc": "^3.0.0",
"del-cli": "^3.0.1",
"dotenv": "^8.2.0",
"focus-trap": "^5.1.0",
"focus-visible": "^5.2.0",
"html-minifier": "^4.0.0",
"lodash": "^4.17.20",
"luxon": "^1.25.0",
"markdown-it": "^12.0.2",
"memfs": "^3.2.0",
"node-fetch": "^2.6.1",
"node-sass": "^5.0.0",
"npm-run-all": "^4.1.5",
"sanitize-html": "^2.3.2",
"svg-sprite": "^1.5.0",
"url-parse": "^1.4.7",
"webpack": "^4.44.1"
},
"devDependencies": {
"cross-env": "^7.0.2"
}
}