-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
131 lines (131 loc) · 4.03 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
124
125
126
127
128
129
130
131
{
"name": "tuya-panel-kit",
"version": "4.0.0-rc.0",
"description": "a functional component library for developing tuya device panels!",
"keywords": [
"tuya",
"react-native",
"panel"
],
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"license": "MIT",
"author": "sound2gd",
"contributors": [
{
"name": "ShinyLeee",
"email": "[email protected]",
"url": "https://github.com/ShinyLeee"
},
{
"name": "杨俊宁",
"email": "[email protected]",
"url": "https://youngjuning.js.org"
}
],
"repository": {
"type": "git",
"url": "https://github.com/TuyaInc/tuya-panel-kit.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"prebuild": "rimraf lib/*",
"build": "babel src --ignore __tests__ --out-dir lib --copy-files",
"dev": "babel src --watch --ignore __tests__ --out-dir lib --copy-files",
"test": "NODE_ENV=testing TZ=UTC jest -u",
"test:watch": "jest --watch",
"commit": "git-cz",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write src/**/*/*.{js,jsx,ts,tsx}",
"release:major:pre": "yarn build && standard-version --release-as major --prerelease rc",
"release:major": "yarn build && standard-version --release-as major",
"release:minor:pre": "yarn build && standard-version --release-as minor --prerelease rc --skip.changelog=true --skip.tag=true",
"release:minor": "yarn build && standard-version --release-as minor",
"release:patch:pre": "yarn build && standard-version --release-as patch --prerelease rc",
"release:patch": "yarn build && standard-version --release-as patch"
},
"config": {
"commitizen": {
"path": "cz-customizable"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add ."
],
"**/*.{md,json}": [
"prettier --write",
"git add ."
]
},
"dependencies": {
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/native": "5.7.3",
"@react-navigation/stack": "5.9.0",
"babel-cli": "^6.26.0",
"color": "^0.11.1",
"events": "^1.1.1",
"hoist-non-react-statics": "^3.3.0",
"prop-types": "^15.6.1",
"react-addons-shallow-compare": "^15.6.2",
"react-native-deprecated-custom-components": "git+https://github.com/facebookarchive/react-native-custom-components.git#83c4fa19ccc9b6cd48ff80e457c493332819b486",
"react-native-gesture-handler": "1.8.0",
"react-native-reanimated": "1.13.0",
"react-native-safe-area-context": "3.1.7",
"react-native-screens": "2.10.1",
"react-native-svg": "5.5.1",
"style-equal": "^1.0.0",
"styled-components": "^3.4.10"
},
"devDependencies": {
"@commitlint/cli": "^7.3.2",
"babel-eslint": "^8.2.1",
"babel-jest": "^26.6.3",
"commitizen": "^4.2.1",
"commitlint-config-cz": "^0.13.2",
"cz-customizable": "^6.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-import-resolver-react-native": "^0.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-react-native": "^3.2.1",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.5",
"metro-react-native-babel-preset": "^0.64.0",
"prettier": "^1.16.4",
"prop-types": "^15.6.1",
"react": "16.14.0",
"react-docgen": "^2.21.0",
"react-native": "0.51.0",
"react-native-mock-render": "^0.1.9",
"react-test-renderer": "^16.6.3",
"standard-version": "^5.0.2"
},
"peerDependencies": {
"react": "16.8.3",
"react-native": "0.59.10",
"react-native-svg": "5.5.1",
"tuya-panel-kit-types": "*"
}
}