-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
97 lines (97 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
97
{
"name": "@taoyage/react-mobile-ui",
"version": "1.8.9",
"description": "A react mobile components lib",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"storybook-docs": "start-storybook --docs --no-manager-cache",
"build-storybook-docs": "build-storybook --docs --no-manager-cache",
"docs:deploy": "gh-pages -d storybook-static",
"deploy": "npm run build-storybook-docs && npm run docs:deploy",
"build": "node ./scripts/build.js",
"prepare": "husky install",
"postpublish": "npm run changelog",
"prepublishOnly": "npm run build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"keywords": [
"react",
"mobile",
"components",
"ui"
],
"files": [
"es",
"lib"
],
"engines": {
"node": ">= 16.15.0"
},
"sideEffects": [
"stories/**/*.scss",
"packages/**/*.scss",
"es/**/*.scss",
"lib/**/*.scss"
],
"repository": {
"type": "git",
"url": "https://github.com/taoyage/react-mobile-ui.git"
},
"author": "taoyage",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.11",
"@taoyage/configs": "^1.3.1",
"@types/node": "^18.0.6",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-is": "^17.0.3",
"@types/react-transition-group": "^4.4.5",
"babel-loader": "^8.2.5",
"chalk": "^4.0.0",
"conventional-changelog-cli": "^2.2.2",
"gh-pages": "^4.0.0",
"gulp-if": "^3.0.0",
"gulp-image": "^5.1.0",
"gulp-sass": "^5.1.0",
"gulp-style-aliases": "^1.1.11",
"gulp-ts-alias": "^1.3.0",
"gulp-typescript": "^6.0.0-alpha.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"mini-css-extract-plugin": "^2.6.0",
"sass": "^1.52.2",
"sass-loader": "^13.0.0",
"signale": "^1.4.0",
"slash2": "^2.0.0",
"typescript": "^4.7.4",
"webpack": "^5.73.0"
},
"dependencies": {
"@react-spring/web": "^9.5.2",
"antd-mobile": "^5.20.0",
"antd-mobile-icons": "^0.3.0",
"classnames": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-transition-group": "^4.4.4"
}
}