-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
96 lines (96 loc) · 2.84 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
{
"name": "my-vue-app",
"version": "0.0.0",
"scripts": {
"dev": "yarn routes && vite",
"build": "yarn routes && node --max_old_space_size=8000 ./node_modules/vite/bin/vite.js build",
"site": "yarn routes && node --max_old_space_size=8000 ./node_modules/vite/bin/vite.js build --base=https://aliyuncdn.antdv.com/v2/",
"routes": "node scripts/genrateRoutes.js",
"lint": "eslint -c ./.eslintrc.js --fix --ext .jsx,.vue,.ts,.tsx ./src",
"pub": "npm run site && node scripts/pushToOSS.js"
},
"license": "UNLICENSED",
"dependencies": {
"@ant-design/icons-vue": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"@vue/babel-plugin-jsx": "^1.0.1",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"ali-oss": "^6.13.2",
"ant-design-vue": "^2.1.2",
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.5",
"codesandbox": "^2.2.3",
"diacritics": "^1.3.0",
"docsearch.js": "^2.6.3",
"enquire-js": "^0.2.1",
"escape-html": "^1.0.3",
"eslint": "^7.17.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-markdown": "^2.0.0-rc.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.4.1",
"fetch-jsonp": "^1.1.3",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"lodash-es": "^4.17.20",
"markdown-it": "^10.0.0",
"markdown-it-anchor": "^5.2.7",
"markdown-it-container": "^2.0.0",
"markdown-it-emoji": "^1.4.0",
"markdown-it-table-of-contents": "^0.4.4",
"marked": "^1.2.7",
"moment": "^2.29.1",
"nprogress": "^0.2.0",
"prettier": "^2.2.1",
"prismjs": "^1.23.0",
"query-string": "^6.13.8",
"querystring": "^0.2.0",
"slash": "^3.0.0",
"umi-request": "^1.3.5",
"vue": "^3.0.10",
"vue-i18n": "^9.2.2",
"vue-request": "^1.0.4",
"vue-router": "^4.0.2",
"vuex": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-typescript": "^7.12.1",
"@types/compression": "^1.7.0",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.15",
"@types/koa": "^2.11.6",
"@types/lodash-es": "^4.17.4",
"@types/lru-cache": "^5.1.0",
"@types/markdown-it": "^10.0.2",
"@types/node": "^13.13.4",
"@types/postcss-load-config": "^2.0.1",
"@vitejs/plugin-vue": "^1.0.5",
"@vitejs/plugin-vue-jsx": "^1.0.1",
"@vue/compiler-sfc": "^3.0.10",
"debug": "^4.3.1",
"fs-extra": "^9.0.0",
"globby": "^11.0.1",
"gray-matter": "^4.0.2",
"less": "^4.1.0",
"lru-cache": "^6.0.0",
"typescript": "^4.1.3",
"vite": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,vue,jsx,tsx}": [
"eslint -c ./.eslintrc.js --fix",
"git add"
]
},
"engines": {
"node": ">=12.0.0"
}
}