-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.16 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
{
"name": "react-boom-store",
"version": "0.0.3",
"description": "47行代码实现的 react 状态管理库",
"main": "lib/react-boom-store.js",
"scripts": {
"dev": "webpack-dev-server --mode=development",
"build": "webpack --config webpack.prod.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "shiye515@gmail.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shiye515/react-boom-store"
},
"bugs": {
"url": "https://github.com/shiye515/react-boom-store/issues"
},
"homepage": "https://github.com/shiye515/react-boom-store",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.3"
},
"peerDependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2"
}
}