forked from prescottprue/react-redux-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
139 lines (139 loc) · 5.15 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
{
"name": "@lucasharada/react-redux-firebase",
"version": "3.1.2",
"description": "Forked from prescottprue/react-redux-firebase. Includes Microsoft authentication.",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"typings": "./index.d.ts",
"unpkg": "dist/react-redux-firebase.min.js",
"scripts": {
"clean": "rimraf es lib dist coverage",
"lint": "eslint ./src/** ./bin/** ./test/**/*.js",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"src/**/*.js\" \"test/**/*.js\"",
"test": "mocha -R spec ./test/unit/**",
"test:cov": "nyc --reporter=lcov npm run test",
"codecov": "cat coverage/lcov.info | codecov",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --source-maps",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --source-maps",
"build:umd": "cross-env BABEL_ENV=commonjs webpack --mode development src/index.js -o dist/react-redux-firebase.js",
"build:umd:min": "cross-env NODE_ENV=production BABEL_ENV=commonjs webpack --mode production src/index.js -o dist/react-redux-firebase.min.js",
"build:size": "cross-env SIZE=true npm run build:umd:min",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"watch": "npm run build:commonjs -- --watch",
"watch:es": "npm run build:es -- --watch",
"prepare": "npm run clean && npm run build",
"pre-push": "npm run lint",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:api": "node bin/api-docs-generate",
"docs:build": "npm run docs:prepare && gitbook build -g prescottprue/react-redux-firebase && npm run docs:api",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cp CNAME _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 [email protected]:prescottprue/react-redux-firebase gh-pages --force",
"docs:upload": "node bin/api-docs-upload"
},
"license": "MIT",
"homepage": "http://react-redux-firebase.com",
"repository": {
"type": "git",
"url": "git+https://github.com/lucasharada/react-redux-firebase.git"
},
"bugs": {
"url": "https://github.com/lucasharada/react-redux-firebase/issues"
},
"author": {
"name": "Lucas Harada",
"url": "https://github.com/lucasharada"
},
"keywords": [
"firebase",
"redux",
"react",
"react-redux",
"redux-firebase",
"react",
"babel",
"hoc",
"redux-react-firebase"
],
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"lodash": "^4.17.15",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^16.3.0"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.6.3",
"@babel/register": "^7.6.2",
"@babel/runtime": "^7.6.2",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.2.0",
"babel-preset-minify": "^0.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^7.1.1",
"chai-enzyme": "^1.0.0-beta.1",
"child-process-promise": "^2.2.1",
"codecov": "^3.6.1",
"cross-env": "^6.0.3",
"documentation": "^12.1.2",
"documentation-markdown-api-theme": "^1.0.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^4.8.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsdoc": "^15.10.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-react-hooks": "^2.1.2",
"eslint-plugin-standard": "^3.0.1",
"firebase": "7.6.2",
"firebase-server": "^1.0.2",
"gitbook-cli": "^2.3.2",
"husky": "^4.0.6",
"jsdom": "^11.10.0",
"lodash-webpack-plugin": "^0.11.5",
"mocha": "^3.5.3",
"nyc": "^15.0.0",
"prettier": "1.10.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^6.0.0",
"recompose": "^0.30.0",
"redux": "4.0.0",
"redux-firestore": "0.5.7",
"rimraf": "^3.0.0",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.41.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-cli": "^3.3.9",
"ws": "^3.2.0",
"xmlhttprequest": "^1.8.0"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-redux-firebase",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}