-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
104 lines (104 loc) · 3.41 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@fonticonpicker/react-fonticonpicker",
"version": "1.2.0",
"description": "A react component to show a picker element to select font icons or SVG.",
"main": "dist/fonticonpicker.react.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "eslint src/js/** src/docs/components/** src/docs/helpers/** && stylelint src/scss/** && jest",
"start": "webpack-dev-server --hot --config webpack.dev.config.js --host 0.0.0.0 --open",
"docs": "webpack --config webpack.doc.config.js",
"build": "webpack --config webpack.config.js && node scripts/cleanupDist.js",
"prepare": "webpack --config webpack.config.js && node scripts/cleanupDist.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fontIconPicker/react-fonticonpicker.git"
},
"keywords": [
"react",
"react-component",
"fonticonpicker",
"svgpicker",
"iconpicker"
],
"author": "Swashata Ghosh <[email protected]> (https://swashata.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fontIconPicker/react-fonticonpicker/issues"
},
"homepage": "https://github.com/fontIconPicker/react-fonticonpicker#readme",
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0",
"classnames": "^2.2.5",
"prop-types": "^15.6.1",
"react-transition-group": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.42",
"@babel/core": "^7.0.0-beta.42",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.42",
"@babel/preset-react": "^7.0.0-beta.42",
"autoprefixer": "^8.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"babel-loader": "^8.0.0-beta.2",
"classnames": "^2.2.5",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"cssnano": "^3.10.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"favicons-webpack-plugin": "0.0.8",
"file-loader": "^1.1.11",
"hamburgers": "^0.9.3",
"html-webpack-inline-svg-plugin": "^1.2.4",
"html-webpack-plugin": "^3.1.0",
"jest": "^22.4.3",
"node-sass": "^4.9.4",
"normalize.css": "^8.0.0",
"postcss-loader": "^2.1.3",
"prettier": "1.11.1",
"prop-types": "^15.6.1",
"raw-loader": "^0.5.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-hot-loader": "^4.0.0",
"react-markdown": "^3.3.0",
"react-router-dom": "^4.2.2",
"react-router-transition": "^1.2.1",
"react-syntax-highlighter": "^7.0.2",
"react-transition-group": "^2.3.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"stylelint": "^9.2.0",
"stylelint-config-prettier": "^3.0.4",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.0.0",
"webpack": "^4.4.1",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {},
"publishConfig": {
"access": "public"
}
}