forked from runreflect/webpack-react-component-name
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.36 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
{
"name": "@mockingjay-io/webpack-react-component-name",
"version": "1.0.2",
"description": "Makes React component names public on minified bundles",
"main": "index.js",
"private": false,
"scripts": {
"watch": "webpack-dev-server --hot --inline --progress --colors",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js && pnpm -r build",
"lint": "eslint",
"build": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mockingjay-io/webpack-react-component-name.git"
},
"keywords": [
"webpack",
"plugin",
"react",
"mockingjay-io",
"webpack-react-component-name"
],
"author": "Niranjan Rajendran <[email protected]> (https://github.com/niranjan94)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mockingjay-io/webpack-react-component-name/issues"
},
"homepage": "https://github.com/mockingjay-io/webpack-react-component-name#readme",
"files": [
"lib/",
"index.js"
],
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-react-display-name": "^7.16.0",
"@babel/plugin-transform-react-jsx": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/core": "^11.0.0",
"@emotion/styled": "^11.3.0",
"@emotion/styled-base": "^11.0.0",
"@eslint/js": "^9.6.0",
"babel-loader": "^8.2.3",
"babel-plugin-react-require": "^3.1.3",
"core-js": "^2.5.7",
"css-loader": "^6.11.0",
"eslint": "9.x",
"globals": "^15.8.0",
"jest": "^29.7.0",
"lodash": "^4.17.19",
"preact": "^10.5.15",
"prop-types": "^15.7.2",
"raf": "^3.4.1",
"react": "^17.0.2",
"react-bootstrap": "^2.0.2",
"react-dom": "^17.0.2",
"react-router": "^6.24.1",
"react-router-dom": "^5.3.0",
"style-loader": "^4.0.0",
"todomvc-app-css": "^2.1.2",
"todomvc-common": "^1.0.5",
"use-onclickoutside": "^0.3.0",
"webpack": "^5.61.0"
},
"peerDependencies": {
"webpack": "5.x"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"acorn-walk": "8.3.3",
"classnames": "^2.5.1",
"minimatch": "7.4.6"
}
}