-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.91 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
{
"name": "think-react-store",
"version": "1.6.72",
"description": "基于react hooks 和 context 实现的类似与 redux 的数据流工具",
"main": "dist/index.js",
"scripts": {
"dev": "webpack-dev-server --hot --inline --progress --colors --config build/webpack.dev.conf.js",
"start": "npm run dev",
"build": "webpack --progress --colors --config build/webpack.prod.conf.js",
"build:min": "cross-env MIN=true webpack --progress --colors --config build/webpack.prod.conf.js",
"build:lib": "cross-env BABEL_ENV=umd babel src/index.js --out-dir lib"
},
"author": "夏小宅",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.8.7",
"@babel/runtime": "^7.9.2",
"ramda": "^0.26.1"
},
"devDependencies": {
"@babel/cli": "^ 7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.0.0",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"style-loader": "^1.0.0",
"url-loader": "^2.2.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
},
"peerDependencies": {
"react": "*"
},
"keywords": [
"react",
"react-hooks",
"context",
"redux"
],
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cpagejs/think-react-store.git"
},
"bugs": {
"url": "https://github.com/cpagejs/think-react-store/issues"
},
"homepage": "https://github.com/cpagejs/think-react-store#readme"
}