-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 3.56 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
105
106
107
108
109
{
"name": "react-nested-popper",
"version": "1.1.0",
"description": "A react library based on popper.js that supports nested poppers and proper context binding.",
"main": "dist/lib.js",
"scripts": {
"build": "webpack --mode=production",
"build-dev": "webpack --mode=development",
"start": "webpack-dev-server --mode=development",
"deploy": "gh-pages -d dist",
"post-deploy": "rm dist/demo.css dist/demo.js dist/index.html",
"publish-demo": "npm run build && npm run deploy && npm run post-deploy",
"prepublish": "npm run build",
"postpublish": "npm run publish-demo",
"test": "jest"
},
"jest": {
"setupFilesAfterEnv": [
"./src/tests/setup.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/runfaj/react-nested-popper.git"
},
"keywords": [
"react",
"nested",
"popper",
"click",
"outside",
"context"
],
"author": "Stuart Roskelley",
"license": "MIT",
"bugs": {
"url": "https://github.com/runfaj/react-nested-popper/issues"
},
"homepage": "https://github.com/runfaj/react-nested-popper#readme",
"peerDependencies": {
"react": ">=16.x",
"react-dom": ">=16.x"
},
"dependencies": {
"@popperjs/core": "^2.5.3",
"classnames": "^2.2.6",
"lodash": "^4.17.20",
"mobx": "^5.15.4",
"mobx-react": "5",
"mobx-state-tree": "^3.15.0",
"prop-types": "^15.7.2",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^10.4.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.5.1",
"cssnano": "^5.0.10",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^25.1.0",
"jquery": "^3.4.1",
"mini-css-extract-plugin": "^2.4.4",
"postcss-loader": "^6.2.0",
"progress-webpack-plugin": "^1.0.16",
"react": "^16.12.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.12.0",
"sass": "^1.55.0",
"sass-loader": "^12.3.0",
"webpack": "^5.64.1",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
}
}