forked from bdefore/redux-little-router
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
151 lines (151 loc) · 5.1 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "@takeshape/redux-little-router",
"version": "17.1.0",
"description": "A barebones routing solution for Redux applications.",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"preversion": "npm run check",
"precommit": "lint-staged",
"version": "npm run clean && npm run build",
"demo": "webpack-dev-server --port 3000 --config config/webpack/demo/webpack.config.demo.dev.js --colors",
"build-demo": "webpack --bail --config config/webpack/demo/webpack.config.demo.js",
"start-ssr-demo": "BABEL_ENV=commonjs nodemon --watch demo demo/server/index.js",
"clean-dist": "rimraf dist",
"build-dist-min": "webpack --bail --config config/webpack/webpack.config.js",
"build-dist-dev": "webpack --bail --config config/webpack/webpack.config.dev.js",
"build-dist": "npm run clean-dist && builder concurrent --buffer build-dist-min build-dist-dev",
"build-flow": "flow-copy-source src lib",
"clean-lib": "rimraf lib",
"build-lib": "npm run clean-lib && BABEL_ENV=commonjs babel src -d lib --copy-files && flow-copy-source src lib",
"watch-lib": "watch 'npm run build-lib' src/ -d",
"clean-es": "rimraf es",
"build-es": "npm run clean-es && babel src -d es --copy-files && flow-copy-source src es",
"watch-es": "watch 'npm run build-es' src/ -d",
"clean": "builder concurrent clean-lib clean-dist clean-es",
"build": "builder concurrent --buffer build-lib build-dist build-es",
"lint-flow": "flow check",
"lint-src": "eslint --color --ext .js,.jsx src test demo config",
"lint": "builder concurrent lint-src lint-flow",
"test": "BABEL_ENV=commonjs mocha test/.setup.js 'test/**/*.spec.js'",
"test-cov": "builder run -q --env='{\"BABEL_ENV\":\"coverage\"}' test-cov-base",
"test-cov-base": "nyc mocha test/.setup.js 'test/**/*.spec.js'",
"check": "builder concurrent --buffer test",
"check-cov": "builder concurrent --buffer lint test-cov",
"all": "npm run clean && builder concurrent --buffer lint test test-cov build"
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "https://github.com/takeshape/redux-little-router"
},
"keywords": [
"redux",
"router",
"middleware"
],
"author": "Tyler Thompson",
"license": "MIT",
"bugs": {
"url": "https://github.com/takeshape/redux-little-router/issues"
},
"homepage": "https://github.com/takeshape/redux-little-router#readme",
"dependencies": {
"history": "^5.3.0",
"lodash.assign": "^4.2.0",
"prop-types": "^15.5.8",
"query-string": "^5.0.1",
"url-pattern": "^1.0.3"
},
"devDependencies": {
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-loader": "^7.1.1",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-lodash": "^3.2.11",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.23.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-2": "^6.11.0",
"babel-register": "^6.14.0",
"builder": "^3.1.0",
"chai": "^4.0.2",
"codecov": "^2.2.0",
"compression-webpack-plugin": "^0.4.0",
"css-loader": "^0.28.4",
"css-modules-require-hook": "^4.0.2",
"ent": "^2.2.0",
"enzyme": "^3.11.0",
"eslint": "4.13.0",
"eslint-config-formidable": "^3.0.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^7.1.0",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^2.1.2",
"flow-bin": "^0.64.0",
"flow-copy-source": "^1.2.1",
"flow-typed": "^2.2.3",
"handlebars": "^4.0.6",
"husky": "^0.14.2",
"immutable": "^3.8.2",
"jsdom": "^9.12.0",
"lint-staged": "^4.0.0",
"lodash": "^4.17.4",
"lodash.chunk": "^4.2.0",
"mocha": "^4.0.1",
"nodemon": "^1.10.2",
"normalize.css": "^7.0.0",
"nyc": "^11.0.3",
"postcss-cssnext": "^2.11.0",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.6",
"postcss-reporter": "^4.0.0",
"prettier": "^1.10.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-loader": "^1.3.1",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"redux-immutable": "^4.0.0",
"redux-logger": "^3.0.0",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.1",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"style-loader": "^0.18.2",
"watch": "^1.0.2",
"webpack": "^3.0.0",
"webpack-dev-middleware": "^1.7.0",
"webpack-dev-server": "^2.5.0",
"webpack-merge": "^4.1.0",
"webpack-partial": "^2.1.0",
"webpack-stats-plugin": "^0.1.4"
},
"peerDependencies": {
"react": "^16.3.0-0 || ^17.0.0-0 || ^18.0.0-0",
"react-dom": "^16.0.0-0 || ^18.0.0-0",
"react-redux": "^7.0.0",
"redux": "^4.0.0"
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"sideEffects": false
}