-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
70 lines (70 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
67
68
69
70
{
"name": "material-ui-color-picker",
"version": "3.5.1",
"description": "<ColorInput> component for material-ui",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint",
"lint": "eslint 'src/**/*.js'",
"build": "NODE_ENV=production babel ./src -d lib --copy-files",
"storybook": "start-storybook -p 9001 -c .storybook",
"prepare": "NODE_ENV=production babel ./src -d lib",
"now-build": "build-storybook -c .storybook -o public"
},
"files": [
"LICENSE",
"*.md",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/loicmahieu/material-ui-color-picker.git"
},
"keywords": [
"reactjs",
"react",
"color",
"picker",
"selector"
],
"author": "Loic Mahieu",
"license": "MIT",
"bugs": {
"url": "https://github.com/loicmahieu/material-ui-color-picker/issues"
},
"homepage": "https://github.com/loicmahieu/material-ui-color-picker#readme",
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/types": "^7.8.3",
"@material-ui/core": "^3.8.1",
"@storybook/addon-actions": "^5.3.3",
"@storybook/react": "^5.3.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.1",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"dependencies": {
"@material-ui/styles": "^4.8.2",
"prop-types": "^15.7.2",
"react-color": "^2.18.0",
"recompose": "^0.30.0"
},
"peerDependencies": {
"@material-ui/core": "^4.8.3",
"react": "^16.12.0"
},
"types": "src/index.d.ts"
}