-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
113 lines (113 loc) · 3.11 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
{
"name": "@tarojsx/library",
"version": "0.31.0",
"description": "Taro3 library",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "colder",
"license": "MIT",
"keywords": [
"taro",
"taro3",
"library",
"components",
"react",
"reactjs",
"wx",
"weixin",
"wechat",
"weapp",
"wechat-mini-program",
"javascript",
"typescript"
],
"files": [
"dist",
"docs",
"style"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tarojsx/library.git"
},
"homepage": "https://github.com/tarojsx/library",
"bugs": {
"url": "https://github.com/tarojsx/library/issues"
},
"scripts": {
"start": "tsc -w --preserveWatchOutput",
"prebuild": "rimraf dist tsconfig.tsbuildinfo",
"build": "tsc",
"pretest": "taro build --type weapp",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build",
"release": "np"
},
"dependencies": {
"@antv/f2": "^3.7.0",
"@tarojsx/polyfill": "^0.16.0",
"@types/react-window": "^1.8.2",
"@types/react-window-infinite-loader": "^1.0.3",
"async-retry": "^1.3.1",
"fast-deep-equal": "^3.1.3",
"react-spring": "^9.0.0-rc.3",
"react-use-gesture": "^7.0.15",
"react-vtree": "^1.0.2",
"react-window": "^1.8.5",
"react-window-infinite-loader": "^1.0.5",
"tslib": "^2.0.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@minapp/wx": "^2.2.1",
"@tarojs/components": "^3.0.3",
"@tarojs/mini-runner": "^3.0.3",
"@tarojs/react": "^3.0.3",
"@tarojs/runtime": "^3.0.3",
"@tarojs/taro": "^3.0.3",
"@tarojs/webpack-runner": "^3.0.3",
"@types/async-retry": "^1.4.2",
"@types/classnames": "^2.2.10",
"@types/jest": "^26.0.3",
"@types/react": "^16.9.43",
"babel-preset-taro": "^3.0.0-rc.6",
"jest": "^26.1.0",
"miniprogram-automator": "^0.9.1",
"np": "^6.3.2",
"react": "^16.13.1",
"react-calendar": "^3.1.0",
"rimraf": "^3.0.2",
"taro-ui": "^2.3.4",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-chain": "^6.4.0"
},
"jest": {
"testRegex": "/test/.*\\.test\\.[t]sx?$",
"watchPathIgnorePatterns": [
".+\\.js(on)$",
"/config|dist|src/"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -x @commitlint/config-conventional -E HUSKY_GIT_PARAMS"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"np": {},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"printWidth": 120
}
}