-
-
Notifications
You must be signed in to change notification settings - Fork 556
/
package.json
146 lines (146 loc) · 5.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
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
{
"name": "react-redux-firebase",
"version": "3.11.0",
"description": "Redux integration for Firebase. Comes with a Higher Order Components for use with React.",
"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 .",
"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",
"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": "husky install && npm run clean && npm run build",
"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/prescottprue/react-redux-firebase.git"
},
"bugs": {
"url": "https://github.com/prescottprue/react-redux-firebase/issues"
},
"author": {
"name": "Prescott Prue",
"url": "https://github.com/prescottprue"
},
"keywords": [
"firebase",
"redux",
"react",
"react-redux",
"redux-firebase",
"react",
"babel",
"hoc",
"hooks",
"redux-react-firebase"
],
"dependencies": {
"hoist-non-react-statics": "^3.3.2",
"lodash": "^4.17.21",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^16.3.0 || ^17.0.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-transform-async-to-generator": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"@babel/plugin-transform-regenerator": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/register": "^7.16.0",
"@babel/runtime": "^7.16.3",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^4.1.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",
"cross-env": "^7.0.2",
"documentation": "^12.1.2",
"documentation-markdown-api-theme": "^1.0.2",
"enzyme": "^3.10.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^30.0.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-standard": "^4.0.1",
"firebase": "7.14.6",
"firebase-server": "^1.1.0",
"gitbook-cli": "^2.3.2",
"husky": "^7.0.4",
"jsdom": "^11.10.0",
"lint-staged": "^12.1.2",
"lodash-webpack-plugin": "^0.11.6",
"mocha": "^3.5.3",
"nyc": "^15.0.0",
"prettier": "2.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^6.0.0",
"recompose": "^0.30.0",
"redux": "4.0.0",
"redux-firestore": "0.5.7",
"rimraf": "^3.0.0",
"sinon": "^9.0.1",
"sinon-chai": "^3.5.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "4.42.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"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"
},
"lint-staged": {
"*.{json,md}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
}
}