-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.05 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.05 KB
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
{
"name": "react-awesome-selector",
"version": "2.0.0",
"description": "A selector component built with ReactJS.",
"main": "dist/Selector.js",
"author": {
"name": "Mohamed Shadab",
"url": "https://mohamedshadab.me"
},
"repository": {
"type": "git",
"url": "https://github.com/statebait/react-awesome-selector"
},
"license": "MIT",
"scripts": {
"build": "webpack",
"prepublishOnly": "yarn build",
"lint": "eslint ./src/*.jsx",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"prepare": "husky install"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/eslint-parser": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@commitlint/config-conventional": "^13.2.0",
"@storybook/addon-console": "^1.2.1",
"@storybook/addon-essentials": "^6.0.7",
"@storybook/addon-storysource": "^6.0.7",
"@storybook/addons": "^6.0.7",
"@storybook/react": "^6.0.7",
"@storybook/storybook-deployer": "^2.8.6",
"@welldone-software/why-did-you-render": "^6.0.3",
"babel-loader": "^8.0.6",
"commitlint": "^13.2.1",
"css-loader": "^6.5.0",
"eslint": "^8.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^8.0.2",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^7.0.0",
"mini-css-extract-plugin": "^2.0.0",
"node-sass": "^7.0.0",
"path": "^0.12.7",
"prettier": "^2.0.5",
"pretty-quick": "^3.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.0.0",
"svg-inline-loader": "^0.8.0",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {}
}