-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
110 lines (110 loc) · 3.67 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "blog",
"version": "1.0.0",
"private": true,
"description": "田勇(田较瘦)的博客",
"author": "tianyong90",
"scripts": {
"build": "yarn run generate-post-list --production && nuxt build",
"deploy": "push-dir --dir=dist --branch=gh-pages --cleanup --allow-unclean",
"dev": "nuxt",
"generate": "yarn run generate-post-list --production && nuxt generate",
"generate-post-list": "ts-node --project scripts/tsconfig.json scripts/generate-post-list.ts generate",
"lint": "yarn lint:js && yarn lint:style",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:style": "stylelint **/*.{vue,css} --ignore-path .gitignore",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"new": "ts-node --project scripts/tsconfig.json scripts/create-post.ts",
"test": "ts-node --project scripts/tsconfig.json scripts/test.ts"
},
"dependencies": {
"@mdi/font": "^6.2.95",
"@nuxt/content": "^1.15.1",
"@nuxtjs/axios": "^5.12.5",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/svg-sprite": "^0.5.2",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.1",
"anchor": "^1.4.0",
"cross-env": "^7.0.2",
"dayjs": "^1.10.3",
"fuse.js": "^6.4.6",
"github-markdown-css": "^5.0.0",
"graphql": "^15.7.0",
"gray-matter": "^4.0.2",
"highlight.js": "^11.2.0",
"lodash": "^4.17.11",
"lxgw-wenkai-lite-webfont": "^1.1.0",
"nuxt": "^2.15.2",
"prism-themes": "^1.5.0",
"remark-admonitions": "^1.2.1",
"remark-autolink-headings": "^7.0.1",
"remark-emoji": "^3.0.1",
"remark-external-links": "^9.0.1",
"remark-footnotes": "^4.0.1",
"remark-slug": "^7.0.1",
"slugify": "^1.3.4",
"social-share.js": "^1.0.16",
"summarize-markdown": "^0.3.1",
"tailwindcss": "^3.0.22",
"transliteration": "^2.1.8"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.0.0",
"@nuxt/typescript-build": "^2.0.0",
"@nuxtjs/eslint-config": "^8.0.0",
"@nuxtjs/markdownit": "^2.0.0",
"@types/color": "^3.0.1",
"@types/fs-extra": "^9.0.1",
"@types/lodash": "^4.14.144",
"@types/node": "^16.11.6",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"@vue/test-utils": "^2.0.0-rc.17",
"address": "^1.1.2",
"autoprefixer": "^10.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.2.5",
"babel-plugin-component": "^1.1.1",
"color": "4.2.0",
"copy-webpack-plugin": "^9.0.1",
"default-gateway": "^6.0.2",
"eslint": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-loader": "^4.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-nuxt": "^3.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^40.1.0",
"eslint-plugin-vue": "^8.4.1",
"fs-extra": "^10.0.0",
"heti": "^0.9.2",
"husky": "^7.0.2",
"jest": "^27.2.5",
"lint-staged": "^12.3.4",
"nodemon": "^2.0.2",
"normalize.css": "^8.0.1",
"postcss": "^8.3.11",
"postcss-html": "^1.1.0",
"postcss-import": "13.0.0",
"postcss-loader": "4.1.0",
"postcss-scss": "^4.0.1",
"postcss-url": "10.1.3",
"prettier": "^2.3.0",
"push-dir": "^0.4.1",
"sass": "^1.43.4",
"sass-loader": "^10.0.2",
"stylelint": "^14.0.0",
"stylelint-config-prettier": "^9.0.2",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"ts-node": "^10.4.0",
"vue-jest": "^3.0.4",
"yargs": "^17.0.1"
}
}