-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.26 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
{
"name": "modal-router",
"version": "0.0.8",
"description": "a simple way to toggle modals",
"main": "dist/index.js",
"scripts": {
"build": "webpack --config webpack.prod.config.js",
"dev": "webpack serve --config webpack.dev.config.js"
},
"keywords": [
"react",
"component",
"Modal"
],
"files": [
"dist",
"README.md"
],
"author": "BennoWu",
"repository": {
"type": "git",
"url": "https://github.com/Benno-Wu/ModalRouter"
},
"bugs": {
"url": "https://github.com/Benno-Wu/ModalRouter/issues"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.12.10",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"html-webpack-plugin": "^4.5.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.15.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@babel/runtime": "^7.13.10"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}