forked from NervJS/taro
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
203 lines (203 loc) · 7.08 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
{
"name": "taro",
"version": "3.5.4",
"description": "开放式跨端跨框架开发解决方案",
"homepage": "https://github.com/NervJS/taro#readme",
"author": "O2Team",
"private": true,
"license": "MIT",
"keywords": [
"nerv",
"taro"
],
"bugs": {
"url": "https://github.com/NervJS/taro/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NervJS/taro.git"
},
"main": "index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"build": "pnpm -r --filter=./packages/* run build",
"clear-all": "rimraf **/node_modules",
"lint": "eslint packages/ --ext .js --ext .ts --ext .tsx",
"lint:style": "stylelint ./packages/**/*.{css,scss}",
"test": "pnpm --parallel -r --filter @tarojs/cli --filter babel-preset-taro --filter @tarojs/components --filter @tarojs/taro-h5 --filter @tarojs/react --filter @tarojs/webpack-runner --filter @tarojs/mini-runner --filter @tarojs/taro-rn --filter @tarojs/components-rn run test:ci",
"version": "run-s version:*",
"version:release": "pnpm --parallel -r --filter=./packages/* exec npm version ${npm_package_version}",
"version:git": "git add . && git commit -m \"chore(release): publish ${npm_package_version}\"",
"version:changelog": "conventional-changelog -p angular"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add -f"
]
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/generator": "^7.14.5",
"@babel/helper-plugin-utils": "^7.14.5",
"@babel/parser": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-proposal-do-expressions": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-react-jsx": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@babel/runtime": "^7.14.5",
"@babel/traverse": "^7.14.5",
"@babel/types": "^7.14.5",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@jest/globals": "^26.6.2",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-replace": "^2.2.0",
"@tarojs/components": "workspace:*",
"@tarojs/helper": "workspace:*",
"@tarojs/mini-runner": "workspace:*",
"@tarojs/plugin-framework-react": "workspace:*",
"@tarojs/plugin-framework-vue2": "workspace:*",
"@tarojs/plugin-framework-vue3": "workspace:*",
"@tarojs/plugin-platform-alipay": "workspace:*",
"@tarojs/plugin-platform-jd": "workspace:*",
"@tarojs/plugin-platform-qq": "workspace:*",
"@tarojs/plugin-platform-swan": "workspace:*",
"@tarojs/plugin-platform-tt": "workspace:*",
"@tarojs/plugin-platform-weapp": "workspace:*",
"@tarojs/router": "workspace:*",
"@tarojs/runner-utils": "workspace:*",
"@tarojs/runtime": "workspace:*",
"@tarojs/shared": "workspace:*",
"@tarojs/taro": "workspace:*",
"@tarojs/taro-h5": "workspace:*",
"@tarojs/taro-loader": "workspace:*",
"@tarojs/taro-rn": "workspace:*",
"@tarojs/webpack-runner": "workspace:*",
"@tarojs/webpack5-runner": "workspace:*",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/jest-native": "^4.0.4",
"@testing-library/react-native": "^9.0.0",
"@types/autoprefixer": "9.7.0",
"@types/babel-types": "^7.0.7",
"@types/babel__core": "^7.1.14",
"@types/babel__traverse": "^7.0.7",
"@types/debug": "^4.1.5",
"@types/detect-port": "1.3.0",
"@types/fs-extra": "^8.0.1",
"@types/history": "^4.7.5",
"@types/inquirer": "^8.2.1",
"@types/jest": "^27.4.1",
"@types/less": "^3.0.2",
"@types/lodash": "^4.14.142",
"@types/lodash-es": "^4.17.6",
"@types/node": "^14.14.31",
"@types/postcss-import": "^12.0.0",
"@types/react": "^18.0.0",
"@types/react-reconciler": "0.26.1",
"@types/request": "^2.48.1",
"@types/resolve": "1.19.0",
"@types/sass": "^1.16.1",
"@types/sax": "^1.2.4",
"@types/sinon": "^7.5.0",
"@types/tapable": "^1",
"@types/testing-library__jest-dom": "^5.14.3",
"@types/webpack": "4",
"@types/webpack-dev-server": "3",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"@vue/babel-plugin-jsx": "^1.0.6",
"@vue/babel-preset-jsx": "^1.2.4",
"@vue/compiler-core": "3.0.0",
"@vue/runtime-core": "3.0.0",
"@vue/runtime-dom": "3.0.0",
"babel-jest": "24.9.0",
"babel-plugin-syntax-jsx": "6.18.0",
"babel-preset-power-assert": "3.0.0",
"babel-preset-taro": "workspace:*",
"cli-highlight": "^2.1.4",
"conventional-changelog-cli": "^2.0.1",
"core-js": "^2.6.5",
"cpy-cli": "^4.1.0",
"cross-env": "^7.0.2",
"esbuild": "^0.14.27",
"eslint": "^8.12.0",
"eslint-config-prettier": "^6.4.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-config-taro": "workspace:*",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "26.1.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^8.6.0",
"gh-pages": "^1.1.0",
"husky": "^8.0.1",
"jest": "26.4.2",
"jest-expo": "^46.0.1",
"jest-fetch-mock": "^3.0.3",
"jest-localstorage-mock": "^2.4.0",
"jest-mock-console": "^1.0.0",
"lint-staged": "^13.0.2",
"memfs": "^3.1.2",
"memory-fs": "^0.5.0",
"mock-socket": "^7.1.0",
"nervjs": "^1.4.6",
"node-sass": "6.0.1",
"npm-run-all": "^4.1.2",
"ora": "4.0.3",
"postcss": "^8.4.12",
"postcss-scss": "^4.0.3",
"power-assert": "^1.6.1",
"preact": "^10.5.15",
"prettier": "^2.7.1",
"prop-types": "^15.7.2",
"react": "^18",
"react-dom": "^18",
"react-test-renderer": "^18",
"rimraf": "^3.0.0",
"rollup": "^2.56.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-node-externals": "^4.0.0",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-ts": "^3.0.2",
"shelljs": "^0.8.1",
"sinon": "^7.5.0",
"stylelint": "^14.6.1",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-config-taro-rn": "workspace:*",
"stylelint-order": "^5.0.0",
"stylelint-taro-rn": "workspace:*",
"ts-jest": "26.5.5",
"tslib": "^1.9.3",
"typescript": "^4.7.4",
"vue": "^2.6.11",
"vue-loader": "^17.0.0",
"vue-template-compiler": "^2.6.11",
"webpack": "5.69.0",
"webpack-chain": "6.5.1",
"webpack-dev-server": "4.7.4",
"webpack-sources": "^3.2.3"
}
}