forked from mjrussell/redux-auth-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.91 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
{
"name": "@cdmbase/redux-auth-wrapper",
"version": "6.6.0",
"description": "A utility library for handling authentication and authorization for redux and react-router",
"repository": {
"type": "git",
"url": "https://github.com/mjrussell/redux-auth-wrapper.git"
},
"license": "MIT",
"main": "index.js",
"type": "module",
"scripts": {
"build": "node esbuild.config.js",
"build:clean": "rimraf ./lib",
"build:copyFiles": "cp -rf package.json LICENSE.txt README.md lib/.",
"dist": "cd lib && yarn publish",
"dist:prepare": "yarn run build:clean && yarn run build && yarn run build:copyFiles",
"docs:build": "yarn run docs:prepare && gitbook build",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:publish": "yarn run docs:clean && yarn run docs:build && cp README.md _book && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push git@github.com:mjrussell/redux-auth-wrapper gh-pages --force",
"docs:watch": "yarn run docs:prepare && gitbook serve",
"lint": "eslint src test examples",
"test": "mocha --require babel-core/register --recursive --require test/init.js test/rrv6-test.js",
"test:cov": "babel-node --max-old-space-size=4076 $(yarn bin)/babel-istanbul cover $(yarn bin)/_mocha -- --require test/init.js test/authWrapper-test.js",
"test:watch": "mocha --require babel-core/register --recursive --require test/init.js -w test/authWrapper-test.js"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"invariant": "^2.2.4",
"lodash.isempty": "^4.4.0",
"query-string": "^9.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@react-navigation/native": "~6.1.8",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "10.0.3",
"babel-istanbul": "0.12.2",
"babel-plugin-transform-decorators-legacy": "1.3.5",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"chai": "4.2.0",
"coveralls": "3.0.9",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"esbuild": "^0.20.1",
"eslint": "6.8.0",
"eslint-plugin-react": "7.17.0",
"expect": "24.9.0",
"gitbook-cli": "2.3.2",
"history": "^5.3.0",
"jsdom": "15.2.1",
"lodash": "4.17.19",
"mkdirp": "0.5.1",
"mocha": "6.2.2",
"prop-types": "^15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-redux": "7.1.3",
"react-router": "^6.4.0",
"react-router-dom": "^6.4.0",
"redux": "4.0.5",
"redux-first-history": "^5.2.0",
"regenerator-runtime": "^0.14.1",
"rimraf": "3.0.0",
"rollup": "^4.12.0",
"sinon": "8.0.2",
"url": "^0.11.3"
},
"publishConfig": {
"access": "public"
},
"authors": [
"Matthew Russell"
]
}