-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
71 lines (71 loc) · 2.26 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
{
"name": "taro-uilib-react",
"version": "0.0.1",
"browser": "dist/index.umd.js",
"module": "dist/index.esm.js",
"main": "dist/index.js",
"source": "src/index.ts",
"description": "Taro UI 库 React 版本范例",
"types": "types/index.d.ts",
"files": [
"lib",
"dist",
"types"
],
"scripts": {
"dev": "yarn run dev:lib",
"dev:lib": "tsc --project ./tsconfig.build.json --watch --incremental",
"build": "yarn run build:rollup && yarn run build:lib",
"build:lib": "tsc --project ./tsconfig.build.json --declaration --declarationDir types",
"build:rollup": "rollup --config ./rollup.config.js",
"prepublishOnly": "yarn run clean && yarn run build",
"lint": "eslint ./src --fix",
"lint:style": "stylelint \"src/**/*.scss\" --syntax scss",
"lint:style-fix": "stylelint \"src/**/*.scss\" --syntax scss --fix",
"test": "cross-env NODE_ENV=test && jest --coverage",
"test:ci": "yarn run build:h5 && yarn run test",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"clean": "rimraf .temp dist lib coverage"
},
"keywords": [
"taro"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@tarojs/components": "^3.0.8",
"@tarojs/react": "^3.0.8",
"@tarojs/taro": "^3.0.8",
"@types/node": "^14.0.13",
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^2.x",
"@typescript-eslint/parser": "^2.x",
"cross-env": "^7.0.2",
"eslint": "^7.2.0",
"eslint-config-taro": "^3.0.8",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"jest": "26",
"rimraf": "3.0.2",
"rollup": "^2.16.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-plugin-visualizer": "^4.0.4",
"stylelint": "13.6.0",
"stylelint-config-standard": "20.0.0",
"stylelint-scss": "3.17.2",
"ts-jest": "26",
"typescript": "^3.9.5"
},
"peerDependencies": {
"@tarojs/components": "^3.0.8",
"@tarojs/react": "^3.0.8",
"react": ">=16.13.0",
"react-dom": ">=16.13.0"
}
}