-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
89 lines (89 loc) · 2.68 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "ipfs-blog",
"version": "1.0.0",
"description": "ipfs blog",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"dev": "vuepress dev src",
"build": "vuepress build src && npm run postbuild",
"postbuild": "./scripts/data/index.js",
"lint": "prettier --write \"**/*.{json,yaml,md}\" && run-p lint:**",
"lint:eslint": "eslint --cache \"**/*.{js,vue}\" --fix",
"lint:styles": "stylelint \"**/*.css\" \"src/.vuepress/**/*.css\" --fix"
},
"keywords": [],
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@vuepress/plugin-blog": "^1.9.4",
"@vuepress/plugin-html-redirect": "^0.1.4",
"@vuepress/plugin-last-updated": "^1.8.2",
"autoprefixer": "^9.8.6",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.12.1",
"gray-matter": "^4.0.3",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"lodash": "^4.17.21",
"markdown-it-deflist": "^2.1.0",
"markdown-it-footnote": "^3.0.3",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-video": "^0.6.3",
"npm-run-all": "^4.1.5",
"p-map": "^4.0.0",
"postcss": "^7.0.35",
"prettier": "^2.3.2",
"slug": "^5.1.0",
"standard-version": "^9.3.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-prettier": "^1.2.0",
"svg-sprite-loader": "^6.0.9",
"svgo": "^2.3.1",
"svgo-loader": "^3.0.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.2",
"tailwindcss-line-clamp": "^1.0.5",
"tailwindcss-touch": "^1.0.1",
"vue": "^2.6.12",
"vuepress": "^1.8.2",
"vuepress-plugin-chunkload-redirect": "^1.0.3",
"vuepress-plugin-clean-urls": "^1.1.2",
"vuepress-plugin-ipfs": "^1.0.2",
"vuepress-plugin-robots": "^1.0.1",
"vuepress-plugin-seo": "^0.1.4",
"xml2js": "^0.4.23"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,yaml,md}": "prettier --write",
"*.{js,vue}": "eslint --cache --fix",
"*.{css,styl}": "stylelint --fix"
},
"dependencies": {
"dayjs": "^1.10.5",
"markdown-it-image-lazy-loading": "^1.1.0",
"markdown-it-imsize": "^2.0.1",
"tailwindcss-typography": "^3.1.0",
"v-lazy-image": "^1.4.0",
"v-scroll-lock": "^1.3.1",
"vue-advanced-cropper": "^1.7.0",
"vue-mq": "^1.0.1",
"vue-multiselect": "^2.1.6",
"vue-social-sharing": "^3.0.7",
"vuepress-plugin-img-lazy": "^1.0.4",
"vuex": "^3.6.2"
}
}