-
Notifications
You must be signed in to change notification settings - Fork 754
/
package.json
72 lines (72 loc) · 2.44 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
{
"private": true,
"name": "taro-ui",
"description": "UI KIT for Taro",
"author": "O2Team <aotu.io>",
"homepage": "https://taro-ui.taro.zone",
"repository": {
"type": "git",
"url": "[email protected]:nervjs/taro-ui.git"
},
"license": "MIT",
"scripts": {
"start": "pnpm install --shamefully-hoist",
"preinstall": "npx only-allow pnpm",
"build": "pnpm -r run build",
"build:ui": "pnpm --filter=taro-ui build",
"build:demo": "pnpm --filter=taro-ui-demo build:h5",
"build:doc": "pnpm run build:demo && pnpm --filter=taro-ui-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"
},
"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",
"@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": "~4.1.6"
},
"resolutions": {
"sharp": "^0.28.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --quiet --cache --fix",
"src/**/*.scss": "stylelint --syntax scss --fix"
},
"dependencies": {
"@babel/eslint-parser": "^7.22.15"
}
}