-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.13 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
{
"name": "react-miniui",
"version": "1.5.1",
"description": "A mini react UI library",
"main": "dist/index.js",
"scripts": {
"dev": "rm -rf ./dist && webpack --mode development",
"start": "webpack --mode development",
"lint": "npx eslint src/**/*.js && flow check",
"flowcheck": "flow check",
"build": "rm -rf ./dist && webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvinhtml/react-miniui.git"
},
"keywords": [
"ui",
"button",
"Column",
"dropdown",
"select",
"components",
"menu",
"form"
],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-flow-strip-types": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@babel/preset-flow": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"autoprefixer": "^9.7.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.13.0",
"css-loader": "^2.1.0",
"eslint": "^5.15.1",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-react": "^7.17.0",
"file-loader": "^3.0.1",
"filemanager-webpack-plugin": "^2.0.5",
"flow-bin": "^0.102.0",
"gitbook-cli": "^2.3.2",
"html-minifier": "^3.5.21",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^1.3.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"sass": "^1.43.4",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^1.1.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0",
"simple-line-icons": "^2.4.1"
}
}