-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·85 lines (85 loc) · 2.51 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
{
"name": "redux-reactstrap-modal",
"version": "2.1.0",
"description": "A Higher Order Component using react-redux to keep modal state in a Redux store",
"keywords": [
"bootstrap",
"dialog",
"modal",
"react",
"react-component",
"reactstrap",
"redux"
],
"homepage": "https://anis-campos.github.io/redux-reactstrap-modal/",
"bugs": "https://github.com/anis-campos/redux-reactstrap-modal/issues",
"repository": {
"type": "git",
"url": "https://github.com/anis-campos/redux-reactstrap-modal.git"
},
"license": "ISC",
"author": "Anis Campos",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.production.config.js --progress",
"build:watch": "webpack --config webpack.production.config.js --progress --watch",
"start": "webpack-dev-server --mode development --config webpack.config.js --progress ",
"predeploy": "webpack --config webpack.config.js --progress",
"deploy": "gh-pages -d build",
"pretest": "eslint .",
"test": "jest"
},
"dependencies": {
"bootstrap": "^4.4.1",
"normalizr": "^3.6.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"reactstrap": "^8.4.1",
"redux": "^4.0.5",
"seamless-immutable": "^7.1.4"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@testing-library/jest-dom": "5.5.0",
"@testing-library/react": "10.0.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.3.0",
"babel-loader": "^8.1.0",
"babel-preset-airbnb": "^5.0.0",
"core-js": "^3.6.5",
"css-loader": "3.5.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "6.8.0",
"eslint-config-react-app": "^5.2.1",
"eslint-loader": "^4.0.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^4.2.0",
"html-webpack-template": "^6.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "25.3.0",
"release-it": "^13.5.2",
"style-loader": "^1.1.0",
"svg-url-loader": "^5.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-node-externals": "^1.7.2"
},
"release-it": {
"npm": false,
"github": {
"release": true,
"draft": true
}
}
}