-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
124 lines (124 loc) · 3.8 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
{
"name": "root",
"private": true,
"description": "a functional component library for developing tuya device panels!",
"workspaces": [
"packages/*"
],
"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/tuya/tuya-panel-kit.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"prebuild": "rimraf lib/*",
"build": "lerna run build",
"dev": "lerna run dev",
"test": "lerna run test",
"test:kit": "cd packages/tuya-panel-kit && yarn test",
"test:utils": "cd packages/tuya-panel-utils && yarn test",
"commit": "git cz",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write src/**/*/*.{js,jsx,ts,tsx}",
"publish:pre": "yarn build && lerna publish --canary --yes --pre-dist-tag=rc --preid=rc",
"publish:prepatch": "yarn build && lerna publish --canary patch --yes --pre-dist-tag=rc --preid=rc",
"publish:preminor": "yarn build && lerna publish --canary --yes --pre-dist-tag=rc --preid=rc",
"publish:premajor": "yarn build && lerna publish --canary --yes --pre-dist-tag=rc --preid=rc",
"publish:patch": "yarn build && lerna publish patch",
"publish:minor": "yarn build && lerna publish minor",
"publish:major": "yarn build && lerna publish major"
},
"config": {
"commitizen": {
"path": "cz-customizable"
}
},
"gitHooks": {
"commit-msg": "commitlint -e -V",
"pre-commit": "lint-staged"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"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": "0.1.2",
"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",
"@react-native-community/blur": "3.6.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@types/node": "^16.4.7",
"@types/react": "^17.0.15",
"@types/react-native": "^0.64.12",
"@types/tuya-panel-kit": "^4.0.8",
"@types/lodash": "^4.14.172",
"babel-eslint": "^8.2.1",
"babel-jest": "^23.6.0",
"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-config-tuya-panel": "^0.4.1",
"eslint-plugin-literal-check": "^0.1.2",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^23.6.0",
"lerna": "^3.22.1",
"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",
"ts-jest": "^23.6.0",
"typescript": "^4.0.5",
"yorkie": "^2.0.0",
"jsdom": "^16.6.0",
"cpy-cli": "^3.1.0"
},
"peerDependencies": {
"@types/tuya-panel-kit": "*",
"react": "16.8.3",
"react-native": "0.59.10",
"react-native-svg": "5.5.1"
}
}