forked from ant-design/ant-design-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.43 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
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "antd-mobile",
"version": "5.2.2",
"scripts": {
"start": "dumi dev",
"build": "gulp",
"build-doc": "dumi build",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"postinstall": "husky install",
"test": "jest",
"test-with-coverage": "jest --coverage",
"publish": "npm publish ./lib"
},
"dependencies": {
"@react-spring/web": "^9.4.3",
"@types/resize-observer-browser": "^0.1.7",
"@use-gesture/react": "^10.2.6",
"ahooks": "^3.1.10",
"antd-mobile-icons": "^0.2.2",
"antd-mobile-v5-count": "^1.0.1",
"classnames": "^2.3.1",
"dayjs": "^1.10.7",
"lodash": "^4.17.21",
"rc-field-form": "^1.23.0",
"rc-tooltip": "^5.1.1",
"staged-components": "^1.1.2",
"tslib": "^2.3.1",
"use-async-memo": "^1.2.3"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@docsearch/react": "^3.0.0",
"@jest/types": "27.5.1",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "7.0.2",
"@testing-library/user-event": "13.5.0",
"@types/jest": "^27.4.1",
"@types/jest-axe": "3.5.3",
"@types/lodash": "^4.14.179",
"@types/react": "^17.0.39",
"@types/react-helmet": "^6.1.5",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"babel-loader": "^8.2.3",
"css-loader": "^6.6.0",
"del": "^6.0.0",
"dumi": "^1.1.38",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.3.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-less": "^5.0.0",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^7.0.4",
"jest": "27.5.1",
"jest-axe": "^5.0.1",
"jest-environment-jsdom": "27.5.1",
"jest-watch-typeahead": "1.0.0",
"less": "^4.1.2",
"lorem-ipsum": "^2.0.4",
"postcss": "^8.4.7",
"postcss-px-multiple": "^0.1.5",
"postcss-pxtorem": "^6.0.0",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"prism-react-renderer": "^1.3.1",
"prismjs": "^1.27.0",
"qrcode.react": "^1.0.1",
"rc-tabs": "^11.10.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-test-renderer": "^17.0.2",
"style-loader": "^3.3.1",
"through2": "^4.0.2",
"ts-jest": "27.1.3",
"ts-node": "10.5.0",
"typescript": "~4.5.5",
"webpack": "^5.69.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-stream": "^7.0.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0"
},
"main": "./cjs/index.js",
"module": "./es/index.js",
"types": "./es/index.d.ts",
"typings": "./es/index.d.ts",
"unpkg": "./umd/antd-mobile.js",
"GravityCDN": "./umd/antd-mobile.js",
"files": [
"./lib"
],
"sideEffects": [
"**/*.css",
"**/*.less",
"./es/index.js",
"./src/index.ts",
"./es/global/index.js",
"./src/global/index.ts"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ant-design/ant-design-mobile.git",
"branch": "master",
"platform": "github"
},
"packageManager": "[email protected]"
}