forked from jd-opensource/taro-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 3.13 KB
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
{
"private": true,
"name": "taro-ui-root",
"version": "3.3.3",
"description": "UI KIT for Taro",
"author": "O2Team <aotu.io>",
"homepage": "https://jd-opensource.github.io/taro-ui/#/",
"repository": {
"type": "git",
"url": "git@github.com:jd-opensource/taro-ui.git"
},
"license": "MIT",
"packageManager": "pnpm@10.33.0",
"scripts": {
"start": "pnpm install --shamefully-hoist",
"preinstall": "npx only-allow pnpm",
"build": "cross-env NODE_OPTIONS='--openssl-legacy-provider' pnpm -r run build",
"build:ui": "cross-env NODE_OPTIONS='--openssl-legacy-provider' pnpm --filter=taro-ui build",
"build:demo": "cross-env NODE_OPTIONS='--openssl-legacy-provider' pnpm --filter=demo build:h5",
"build:doc": "cross-env NODE_OPTIONS='--openssl-legacy-provider' pnpm run build:demo && cross-env NODE_OPTIONS='--openssl-legacy-provider' pnpm --filter=docs build",
"clean": " rimraf **/dist && rimraf **/node_modules",
"prepare": "husky install",
"version": "run-s version:*",
"version:release": "pnpm --parallel -r --aggregate-output --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",
"format": "prettier --write . --ignore-path .gitignore",
"generate:guide-references": "node scripts/generate-taro-ui-guide-references.js"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@swc/core": "^1.3.107",
"@swc/core-darwin-arm64": "1.3.107",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "9.8.8",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"eslint-config-o2team": "^0.1.7",
"eslint-config-prettier": "^6.15.0",
"eslint-config-taro": "~3.6.15",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.21.0",
"tslib": "2.5.0",
"typescript": "~5.3.3"
},
"pnpm": {
"overrides": {
"@swc/core": "1.3.107"
},
"onlyBuiltDependencies": [
"@swc/core"
],
"patchedDependencies": {
"metro@0.84.3": "patches/metro@0.84.3.patch"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --quiet --cache --fix",
"src/**/*.scss": "stylelint --syntax scss --fix"
},
"dependencies": {
"@babel/eslint-parser": "^7.22.15"
}
}