forked from YukinobuKurata/docs.devprotocol.xyz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.26 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
{
"name": "docs",
"private": true,
"version": "1.0.0",
"description": "Documentation for Dev Protocol and the ecosystem",
"scripts": {
"start": "eleventy --serve & postcss styles/tailwind.css --o _tmp/style.css --watch",
"build": "ELEVENTY_PRODUCTION=true eleventy && NODE_ENV=production postcss styles/tailwind.css --o _site/style.css && ./node_modules/.bin/cleancss -o _site/style.css _site/style.css",
"watch": "npx eleventy --watch",
"debug": "DEBUG=* npx eleventy",
"lint": "yarn lint:format",
"lint:format": "prettier --write '**/*.{ts,js,json,md,yml}'",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-protocol/docs.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/dev-protocol/docs/issues"
},
"homepage": "https://github.com/dev-protocol/docs",
"devDependencies": {
"@11ty/eleventy": "1.0.0",
"alpinejs": "3.9.0",
"eleventy-plugin-lazyimages": "2.1.2",
"eslint": "8.8.0",
"husky": "7.0.4",
"lazysizes": "5.3.2",
"luxon": "2.3.0",
"markdown-it": "12.3.2",
"markdown-it-anchor": "8.4.1",
"markdown-it-image-lazysizes": "1.0.0",
"postcss-cli": "9.1.0",
"prettier": "2.5.1",
"tailwindcss": "2.2.19"
},
"dependencies": {
"@11ty/eleventy-img": "1.0.0",
"@11ty/eleventy-navigation": "0.3.2",
"@11ty/eleventy-plugin-syntaxhighlight": "4.0.0",
"@tailwindcss/forms": "0.4.0",
"@tailwindcss/typography": "0.4.1",
"autoprefixer": "10.4.2",
"clean-css": "5.2.4",
"clean-css-cli": "5.5.2",
"elasticlunr": "0.9.5",
"eleventy-plugin-embed-everything": "1.14.0",
"eleventy-plugin-i18n": "0.1.3",
"eleventy-plugin-nesting-toc": "1.3.0",
"eleventy-plugin-svg-contents": "0.7.0",
"eleventy-plugin-toc": "1.1.5",
"emoji-regex": "9.2.2",
"html-minifier": "4.0.0",
"markdown-it-attrs": "4.1.3",
"markdown-it-center-text": "1.0.4",
"markdown-it-container": "3.0.0",
"markdown-it-emoji": "2.0.0",
"markdown-it-footnote": "3.0.3",
"markdown-it-for-inline": "0.1.1",
"markdown-it-linkify-images": "2.0.0",
"markdown-it-table-of-contents": "0.6.0",
"markdown-it-task-lists": "2.1.1",
"postcss": "8.4.6",
"qs": "6.10.3",
"remove": "0.1.5",
"staticrypt": "2.0.1",
"uglify-es": "3.3.9",
"url-pattern": "1.0.3"
},
"main": ".eleventy.js"
}