-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 2.78 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
{
"name": "aunt",
"description": "React Mobile UI Components base on Aunt UI",
"scripts": {
"start": "dumi dev",
"build:docs": "dumi build",
"build": "gulp",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"lint": "npm run lint:prettier && npm run lint:es",
"lint:prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:es": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install",
"cli:create": "node ./cli/component.js"
},
"keywords": [
"ui",
"react",
"mobile",
"components",
"component",
"design",
"framework",
"frontend",
"react-component"
],
"homepage": "https://aunt.design",
"license": "MIT",
"author": "79E",
"main": "./cjs/index.js",
"module": "./es/index.js",
"types": "./es/index.d.ts",
"typings": "./es/index.d.ts",
"files": [
"./lib"
],
"sideEffects": [
"**/*.css",
"**/*.less",
"./es/index.js",
"./src/index.ts"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/79E/aunt.git",
"branch": "master",
"platform": "github"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"resolutions": {},
"dependencies": {
"react-transition-group": "^4.4.5",
"tslib": "^2.4.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.18.2",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.3",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/react-transition-group": "^4.4.5",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"@umijs/test": "^3.0.5",
"commitlint": "^17.0.3",
"del": "^6.1.1",
"dumi": "^1.1.48",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"f2-touchemulator": "^0.0.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-less": "^5.0.0",
"gulp-postcss": "^9.0.1",
"gulp-replace": "^1.1.3",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^8.0.1",
"less": "^4.1.3",
"lint-staged": "^13.0.0",
"postcss-px-multiple": "^0.1.5",
"qrcode.react": "^3.0.2",
"through2": "^4.0.2",
"typescript": "^4.7.3",
"umi-hd": "^5.0.1",
"yorkie": "^2.0.0"
},
"packageManager": "[email protected]"
}