-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.89 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
{
"name": "@asosunoff/react-modal",
"version": "0.0.4",
"description": "modal component",
"homepage": "https://asosunoff.github.io/React-Modal/",
"author": {
"name": "Alexander Sosunov",
"url": "https://github.com/aSosunoff"
},
"main": "dist/index.js",
"bugs": {
"url": "https://github.com/aSosunoff/React-Modal/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/aSosunoff/React-Modal.git"
},
"peerDependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.1",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^5.0.1",
"dotenv": "^8.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-environment-jsdom-fourteen": "^1.0.1",
"jest-resolve": "^26.6.2",
"jest-watch-typeahead": "^0.6.1",
"mini-css-extract-plugin": "^1.3.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-app-polyfill": "^2.0.0",
"react-dom": "^16.14.0",
"react-refresh": "^0.9.0",
"react-test-renderer": "^17.0.1",
"sass-loader": "^10.0.5",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.0.3",
"uuid": "^8.3.1",
"webpack": "^5.4.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config ./webpack/webpack.dev.js --mode development --open",
"dist": "webpack --config ./webpack/webpack.dist.js --mode production",
"build": "cross-env NODE_ENV=production webpack --config ./webpack/webpack.prod.js --mode production",
"lint": "eslint src",
"test": "jest --watchAll",
"predeploy": "cross-env GP_DEPLOY=true NODE_ENV=production webpack --config ./webpack/webpack.prod.js --mode production",
"deploy": "gh-pages -d build",
"prepublish": "npm prune",
"run_all": "npm run dist && npm run deploy && npm publish && git add . && git commit -m \"run dist\" && git push"
},
"keywords": [
"modal",
"react-modal",
"react"
],
"files": [
"/dist",
"/src",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
}
}