-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.35 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.35 KB
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
111
112
{
"name": "cherry-rc-ui",
"version": "1.0.7",
"description": "A React UI Library Based On RC.",
"keywords": [],
"homepage": "git://github.com/nywgithub/components.git#readme",
"repository": {
"type": "git",
"url": "git://github.com/nywgithub/components.git"
},
"license": "ISC",
"main": "lib/index.js",
"module": "esm/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"esm"
],
"scripts": {
"build": "npm run clean && npm run build:types && gulp",
"build:site": "dumi build",
"build:types": "tsc -p tsconfig.build.json && cpr lib esm",
"clean": "rimraf lib esm dist .dumi doc-site",
"deploy:site": "npm run build:site && gh-pages -d doc-site",
"dev": "npm start",
"postnew": "prettier --write src/**/*{ts,tsx} --loglevel silent",
"prepublishOnly": "npm run build",
"preview": "cross-env PREVIEW=1 npm run build:site && cross-env PREVIEW=1 dumi preview",
"release": "np --no-cleanup --no-tests --any-branch",
"start": "dumi dev",
"release:all": "git pull && git add . && git commit -m 'rebuild' && git push && npm run build && npm run build:site && gh-pages -d doc-site && npm run release"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@babel/runtime": "^7",
"ahooks": "^3.7.4",
"body-scroll-lock": "^4.0.0-beta.0",
"dom-align": "^1.12.4",
"is-mobile": "^3.1.1",
"rc-input-number": "^7.4.0",
"rc-rate": "^2.10.0",
"rc-upload": "^4.3.4",
"rc-util": "^5.27.2",
"react-icons": "^4.7.1",
"react-is": "^18.2.0",
"react-transition-group": "^4.4.5"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.7",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/body-scroll-lock": "^3.1.0",
"@types/node": "^16.11.26",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"@types/react-is": "^17.0.3",
"@types/react-transition-group": "^4.4.5",
"@umijs/fabric": "^3",
"babel-plugin-import": "^1.13.3",
"commitizen": "^4.2.5",
"core-js": "^3.26.1",
"cpr": "^3.0.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"doctoc": "^1.4.0",
"dumi": "^1.1.40",
"eslint": "^7",
"gh-pages": "^3.2.3",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-babel": "^8.0.0",
"gulp-cssnano": "^2.1.3",
"gulp-less": "^4.0.1",
"identity-obj-proxy": "^3.0.0",
"less": "^3.10.3",
"lint-staged": "^13",
"np": "^7.5.0",
"plop": "^2",
"prettier": "^2.8.0",
"prettier-plugin-packagejson": "^2.3.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rimraf": "^3.0.0",
"snapshot-diff": "^0.6.1",
"through2": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"authors": {
"name": "nyw",
"email": "1500920628@qq.com"
}
}