-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.5 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
{
"name": "vendia-blog-content",
"private": true,
"version": "1.0.0",
"description": "Welcome to the Vendia blog repo!",
"author": "Vendia Inc",
"main": "index.js",
"scripts": {
"serve": "serve .github/admin",
"test": "uvu .github .test.js",
"test:md": "uvu .github 'md.test.([mc]js|[jt]sx?)$'",
"test:fm": "uvu .github 'find-frontmatter.test.([mc]js|[jt]sx?)$'",
"docs": "node ./.github/generate.js",
"new": "plop --plopfile .github/plopfile.js",
"process": "node .github/process-images",
"checklinks": "npm run checklinks:posts && npm run checklinks:releases",
"checklinks:posts": "linkinator 'posts/**/*.md' --config ./.github/linkinator.config.json",
"checklinks:releases": "linkinator 'releases/**/*.md' --config ./.github/linkinator.config.json"
},
"homepage": "https://github.com/vendia/blog#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vendia/blog.git"
},
"bugs": {
"url": "https://github.com/vendia/blog/issues"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.17.0",
"cloudinary": "^1.26.1",
"exiftool-vendored": "^14.5.0",
"got": "^11.8.2",
"gray-matter": "4.0.3",
"html-tags": "^3.1.0",
"html-validate": "^6.4.0",
"linkinator": "^2.13.6",
"markdown-magic": "^2.6.0",
"mime-types": "^2.1.35",
"node-exiftool": "^2.3.0",
"plop": "^2.7.4",
"slugify": "^1.6.3",
"string-width": "^4.2.3",
"uvu": "^0.5.1"
},
"dependencies": {
"serve": "^14.0.1"
}
}