-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.9 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
{
"name": "miniprogram-redux",
"version": "1.1.1",
"description": "Wechat Miniprogram bindings for Redux.",
"keywords": [
"redux",
"miniprogram",
"wechat",
"weapp"
],
"license": "MIT",
"homepage": "https://github.com/mingenesis/miniprogram-redux",
"repository": {
"type": "git",
"url": "https://github.com/mingenesis/miniprogram-redux.git"
},
"bugs": {
"url": "https://github.com/mingenesis/miniprogram-redux/issues"
},
"author": "Zhu DeMing <[email protected]>",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"miniprogram_dist",
"lib",
"es",
"src"
],
"scripts": {
"clean": "rimraf lib es miniprogram_dist",
"lint": "eslint src",
"prebuild": "yarn clean",
"build:commonjs": "BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "babel src --out-dir es",
"build:miniprogram": "NODE_ENV=production rollup -c -d miniprogram_dist",
"build": "yarn build:commonjs && yarn build:es && yarn build:miniprogram",
"prepare": "yarn lint && yarn build"
},
"dependencies": {
"redux": "^4.0.0",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"rimraf": "^3.0.0",
"rollup": "^1.25.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.2",
"typescript": "^3.6.4"
}
}