forked from innocces/taro-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.12 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
{
"private": true,
"workspaces": [
"packages/*"
],
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:build:gh": "cross-env BUILD_TARGET=GH dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"app:dev": "cd ./packages/app && npm run dev:weapp",
"app:dev:h5": "cd ./packages/app && npm run dev:h5",
"app:build:h5": "cd ./packages/app && npm run build:h5",
"app:build": "lerna run build:weapp --scope=app --stream",
"app:build:examine": "lerna run build:weapp:examine --scope=app --stream",
"build": "lerna run build --scope=taro-hooks --stream",
"deploy": "npm run docs:build && npm run docs:deploy",
"release": "npm run build && npm run lerna:publish:major",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"bootstrap": "lerna bootstrap",
"lerna": "lerna init",
"lerna:publish": "lerna publish --no-private",
"lerna:publish:major": "lerna publish major --no-private",
"lerna:publish:minor": "lerna publish minor --no-private",
"lerna:publish:patch": "lerna publish patch --no-private",
"log": "./node_modules/.bin/conventional-changelog -i CHANGELOG.md -s -r 0",
"postversion": "npm run log",
"contributors:generate": "all-contributors generate"
},
"main": "lib/index.js",
"module": "es/index.js",
"typings": "dist/index.d.ts",
"unpkg": "dist/taro-hooks.min.js",
"files": [
"dist",
"es",
"lib"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@babel/runtime": "^7.14.6",
"@react-spring/web": "^9.2.5",
"base-64": "^1.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"taro-runtime-docs": "^3.3.14"
},
"devDependencies": {
"@types/react": "^17.0.2",
"@umijs/plugin-esbuild": "^1.3.1",
"@umijs/plugin-sass": "^1.1.1",
"@umijs/test": "^3.4.14",
"all-contributors-cli": "^6.20.0",
"babel-plugin-const-enum": "^1.1.0",
"babel-plugin-import": "^1.13.3",
"babel-preset-taro": "^3.2.13",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"dumi": "^1.1.19",
"dumi-theme-mobile": "^1.1.3",
"father-build-offline": "^1.20.4",
"gh-pages": "^3.0.0",
"lerna": "^4.0.0",
"lint-staged": "^10.0.7",
"new-github-release-url": "^1.0.0",
"postcss-pxtorem": "5.1.1",
"postcss-pxtransform": "^3.2.13",
"prettier": "^2.2.1",
"yorkie": "^2.0.0"
},
"resolutions": {
"@types/react": "^17.0.2",
"typescript": "~4.2.3"
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"branch": "main",
"platform": "github",
"url": "[email protected]:innocces/taro-hooks.git",
"type": "git"
},
"authors": [
"innocces <[email protected]> (https://github.com/innocces)"
]
}