-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.12 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
72
73
74
{
"name": "mui-segmented-control",
"version": "1.1.0",
"description": "A plugin for https://github.com/mui-org/material-ui that creates a segmented control component",
"main": "dist-modules",
"module": "dist-es6",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --hot",
"build": "cross-env NODE_ENV=production webpack",
"lint": "eslint ./src",
"dist:es6": "del-cli ./dist-es6 && cross-env BABEL_ENV=es6 babel ./src --out-dir ./dist-es6",
"dist:modules": "del-cli ./dist-modules && cross-env BABEL_ENV=modules babel ./src --out-dir ./dist-modules",
"prepublishOnly": "npm run dist:es6 && npm run dist:modules"
},
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.7.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.2.0",
"del-cli": "^1.1.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"html-webpack-plugin": "^3.2.0",
"react-hot-loader": "^4.6.5",
"webpack": "^3.10.0",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"peerDependencies": {
"@material-ui/core": "^4.0.0",
"react": ">= 16.8.1"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"react-hot-loader/babel"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/getapper/mui-segmented-control.git"
},
"keywords": [
"mui",
"material",
"ui",
"segmented",
"control",
"component",
"react",
"hooks"
],
"author": "Getapper",
"license": "MIT",
"bugs": {
"url": "https://github.com/getapper/mui-segmented-control/issues"
},
"homepage": "https://github.com/getapper/mui-segmented-control#readme"
}