-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.56 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
{
"name": "lucky-bird-ui",
"description": "基于antd封装的组件",
"author": "Hencky",
"version": "1.10.9",
"main": "es/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"files": [
"es"
],
"license": "MIT",
"scripts": {
"dev": "SHOW_ALL_COMPONENT_DEMOS=true vite serve docs",
"compile": "father-build",
"compile:watch": "father-build --watch",
"build": "rm -rf docs/dist && vite build docs",
"build:preview": "rm -rf docs/dist && vite build docs && serve -s docs/dist",
"deploy": "bash deploy.sh",
"ssr": "rm -rf docs/dist && vite-pages ssr docs && serve docs/dist",
"lint": "npm run lint:script && npm run lint:style",
"lint:script": "tsc && eslint --ext .js,.jsx,.ts,.tsx --fix ./",
"lint:style": "stylelint --fix \"src/**/*.less\" --custom-syntax postcss-less",
"pretty-quick": "pretty-quick",
"release": "npm publish"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"antd": "^4.19.5",
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"moment": "^2.29.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@types/lodash": "^4.17.4",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"@vitejs/plugin-react-refresh": "^1.3.3",
"babel-plugin-import": "^1.13.8",
"commitlint": "^16.2.4",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"father-build": "^1.22.1",
"husky": "^6.0.0",
"less": "^3.13.1",
"lint-staged": "^12.4.1",
"mockjs": "^1.1.0",
"postcss-less": "^6.0.0",
"prettier": "^2.6.2",
"pretty-quick": "3",
"serve": "^12.0.1",
"stylelint": "^14.8.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-prettier": "^2.0.0",
"typescript": "^4.6.3",
"typescript-eslint": "^0.0.1-alpha.0",
"vite": "^2.5.6",
"vite-pages-theme-doc": "^3.1.4",
"vite-plugin-eslint": "^1.5.2",
"vite-plugin-mdx": "^3.5.6",
"vite-plugin-react-pages": "^3.1.8"
}
}