-
Notifications
You must be signed in to change notification settings - Fork 748
/
Copy pathpackage.json
77 lines (77 loc) · 2.24 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
{
"private": true,
"name": "taro-ui-demo-rn",
"version": "3.2.0-beta.0",
"description": "Taro UI demo",
"author": "O2Team <aotu.io>",
"homepage": "https://taro-ui.aotu.io",
"repository": {
"type": "git",
"url": "[email protected]:nervjs/taro-ui.git"
},
"license": "MIT",
"templateInfo": {
"name": "default",
"typescript": true,
"css": "sass"
},
"scripts": {
"build": "pnpm run build:rn",
"build:weapp": "taro build --type weapp",
"build:swan": "taro build --type swan",
"build:alipay": "taro build --type alipay",
"build:tt": "taro build --type tt",
"build:h5": "taro build --type h5",
"build:rn": "taro build --type rn",
"build:qq": "taro build --type qq",
"build:quickapp": "taro build --type quickapp",
"dev:weapp": "pnpm run build:weapp --watch",
"dev:swan": "pnpm run build:swan --watch",
"dev:alipay": "pnpm run build:alipay --watch",
"dev:tt": "pnpm run build:tt --watch",
"dev:h5": "pnpm run build:h5 --watch",
"dev:rn": "pnpm run build:rn --watch",
"dev:qq": "pnpm run build:qq --watch",
"dev:quickapp": "pnpm run build:quickapp --watch",
"clean": "rimraf .temp dist"
},
"browserslist": [
"last 3 versions",
"Android >= 4.1",
"ios >= 8"
],
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"@babel/runtime": "^7.7.7",
"@tarojs/components": "3.6.6",
"@tarojs/plugin-framework-react": "3.6.6",
"@tarojs/react": "3.6.6",
"@tarojs/rn-runner": "3.6.6",
"@tarojs/runtime": "3.6.6",
"@tarojs/taro": "3.6.6",
"@tarojs/taro-rn": "3.6.6",
"react-native": "^0.71.6",
"react-native-modal": "^13.0.0",
"taro-ui": "workspace:^"
},
"devDependencies": {
"@react-native-picker/picker": "^1.15.0",
"@tarojs/cli": "3.6.6",
"@tarojs/mini-runner": "3.6.6",
"@tarojs/webpack-runner": "3.6.6",
"@types/react": "^18.2.0",
"@types/webpack-env": "^1.13.6",
"babel-plugin-transform-imports": "^2.0.0",
"babel-preset-taro": "3.6.6",
"escape-string-regexp": "^4.0.0",
"eslint-config-taro": "3.6.6",
"expo": "~48.0.0",
"patch-package": "^6.4.7",
"react-native-svg": "13.8.0",
"typescript": "^3.8.3"
},
"resolutions": {
"sass": "1.37.5"
}
}