This repository was archived by the owner on Aug 4, 2023. It is now read-only.
forked from slorber/react-loadable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.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
{
"name": "@docusaurus/react-loadable",
"publishConfig": {
"access": "public"
},
"version": "5.5.2",
"description": "A higher order component for loading components with promises",
"main": "lib/index.js",
"types": "index.d.ts",
"author": "James Kyle <[email protected]>",
"license": "MIT",
"repository": "thejameskyle/react-loadable",
"files": [
"index.d.ts",
"babel.js",
"webpack.js",
"lib/**"
],
"scripts": {
"test": "jest --coverage",
"build": "babel src -d lib",
"start": "yarn build && webpack && babel-node example/server.js",
"prepare": "yarn build"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/node": "^7.16.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-async-to-generator": "^7.16.8",
"@babel/plugin-transform-object-assign": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.5",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"express": "^4.17.3",
"flow-bin": "^0.176.2",
"jest": "^27.5.1",
"path-browserify": "^1.0.1",
"prettier": "^2.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"regenerator-runtime": "^0.13.9",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"peerDependencies": {
"react": ">=16.3"
}
}