-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 2.23 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
{
"name": "react-router-query-params",
"version": "1.0.4",
"description": "Set query parameters with a schema for react-router.",
"main": "./lib/index.js",
"module": "./es/index.js",
"types": "./index.d.ts",
"scripts": {
"build": "npm run lint && npm run build:commonjs && npm run build:es",
"build:commonjs": "rimraf ./lib && cross-env BABEL_ENV=commonjs babel ./src --out-dir ./lib",
"build:es": "rimraf ./es && cross-env BABEL_ENV=es babel ./src --out-dir ./es",
"lint": "eslint --ext .jsx --ext .js ./src",
"test": "cross-env NODE_ENV=test karma start",
"test:watch": "npm run test -- --singleRun=false",
"demo": "webpack-dev-server --config webpack.demo.config.js --content-base demo/",
"prepublishOnly": "npm run build",
"start": "npm run demo"
},
"author": "nygardk",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/woltapp/react-router-query-params"
},
"keywords": [
"react",
"router",
"query",
"param",
"queryparam",
"hoc",
"component"
],
"peerDependencies": {
"react": ">=15.0.0",
"react-router": ">=4.0.0",
"react-router-dom": ">=4.0.0"
},
"devDependencies": {
"@babel/cli": "7.8.3",
"@babel/core": "7.8.3",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-export-default-from": "7.8.3",
"@babel/plugin-transform-runtime": "7.8.3",
"@babel/polyfill": "7.8.3",
"@babel/preset-env": "7.8.3",
"@babel/preset-react": "7.8.3",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"cross-env": "6.0.3",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.9.0",
"eslint-loader": "3.0.3",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.0",
"prettier": "1.19.1",
"react": "15.5.4",
"react-dom": "15.5.4",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"rimraf": "3.0.0",
"webpack": "4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "3.10.1"
},
"dependencies": {
"prop-types": "^15.5.10",
"query-string": "^6.8.0",
"react-display-name": "^0.2.0"
}
}