-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.46 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.46 KB
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
{
"name": "@openovate/webpack-react-router",
"version": "0.0.3",
"description": "Webpack powered React router that supports virtual modules, virtual folders, and code splitting.",
"main": "index.js",
"scripts": {
"build": "webpack",
"start": "webpack-dev-server --mode development --no-inline",
"test": "jest"
},
"keywords": [
"webpack plugin",
"react router"
],
"author": "Christian Blanquera <cblanquera@openovate.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Openovate/webpack-react-router.git"
},
"bugs": {
"url": "https://github.com/Openovate/webpack-react-router/issues"
},
"homepage": "https://github.com/Openovate/webpack-react-router#readme",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.5.5",
"@openovate/webpack-virtual-folders": "0.0.1",
"babel-loader": "^8.0.6",
"express": "^4.17.1",
"history": "^4.10.1",
"jest": "^24.9.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1",
"webpack-hot-middleware": "^2.25.0"
},
"dependencies": {
"path-to-regexp": "^3.1.0",
"webpack-virtual-modules": "^0.1.11"
}
}