-
-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
125 lines (125 loc) · 3.56 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
{
"name": "redux-firestore",
"version": "0.0.0-development",
"description": "Redux bindings for Firestore.",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"unpkg": "dist/redux-firestore.min.js",
"typings": "./index.d.ts",
"files": [
"dist",
"lib",
"es",
"src",
"index.d.ts"
],
"browserslist": [
"last 2 versions",
"not dead",
"> 0.2%"
],
"engines": {
"node": ">=16"
},
"scripts": {
"clean": "rimraf lib dist",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"watch": "npm run build:es -- --watch",
"watch:lib": "npm run build:lib -- --watch",
"watch:commonjs": "npm run build:commonjs -- --watch",
"test": "mocha -r @babel/register --require ./test/setup -R spec ./test/unit/**",
"test:cov": "nyc --reporter=lcov --reporter=html npm run test",
"lint": "eslint src test",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"src/**/*.js\" \"test/**/*.js\"",
"prepare": "husky install && npm run clean && npm run build"
},
"peerDependencies": {
"firebase": "^9.0.0"
},
"dependencies": {
"immer": "9.0.21",
"lodash": "^4.17.21",
"reduce-reducers": "^1.0.4"
},
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/plugin-transform-modules-commonjs": "7.26.3",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@babel/register": "7.25.9",
"@babel/runtime": "7.26.0",
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"babel-loader": "9.2.1",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-module-resolver": "5.0.2",
"babel-plugin-transform-inline-environment-variables": "0.4.4",
"chai": "4.5.0",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "46.10.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.37.2",
"firebase": "9.23.0",
"husky": "8.0.3",
"lint-staged": "13.3.0",
"lodash-webpack-plugin": "0.11.6",
"mocha": "10.8.2",
"nyc": "15.1.0",
"prettier": "2.8.8",
"redux": "4.2.1",
"rimraf": "5.0.10",
"sinon": "15.2.0",
"sinon-chai": "3.7.0",
"terser-webpack-plugin": "5.3.10",
"webpack": "5.97.1",
"webpack-cli": "5.1.4"
},
"license": "MIT",
"homepage": "https://github.com/prescottprue/redux-firestore#readme",
"keywords": [
"firestore",
"redux",
"react-firestore",
"react-redux-firebase",
"redux-firebase",
"react-firebase",
"firebase"
],
"repository": {
"type": "git",
"url": "git+https://github.com/prescottprue/redux-firestore.git"
},
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"lint-staged": {
"*.{json,md,yaml,yml}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
},
"packageManager": "[email protected]"
}