forked from tiberiuc/redux-react-firebase
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.22 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
{
"name": "redux-react-firebase",
"version": "2.11.2",
"description": "Use Firebase with React and Redux in ES6 ",
"main": "build/index.js",
"scripts": {
"build": "babel --plugins transform-decorators-legacy,lodash --presets es2015,stage-1,react source --out-dir build",
"build-dev": "babel --plugins transform-decorators-legacy,lodash --presets es2015,stage-1,react source --out-dir build --watch --source-maps inline",
"watch": "npm run build -- --watch",
"clean": "rimraf build",
"prepublish": "npm run clean && npm run build",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "mocha"
},
"author": "Tiberiu Craciun <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tiberiuc/redux-react-firebase.git"
},
"bugs": {
"url": "https://github.com/tiberiuc/redux-react-firebase/issues"
},
"homepage": "https://github.com/tiberiuc/redux-react-firebase#readme",
"keywords": [
"firebase",
"redux",
"react"
],
"dependencies": {
"es6-promise": "^3.2.1",
"lodash": "^4.17.2"
},
"peerDependencies": {
"firebase": "^4.6.0",
"immutable": "^3.7.6",
"lodash": "^4.13.1",
"react": "^0.14.6 || ^15.0.0 || ^16.0.0",
"react-redux": "^4.0.6 || ^5.0.0",
"prop-types": "^15.6.0",
"redux": "^3.0.5"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-plugin-lodash": "^3.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"eslint": "^2.13.1",
"eslint-config-standard": "^5.3.1",
"eslint-config-standard-react": "^2.5.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-react": "^5.2.2",
"eslint-plugin-standard": "^1.3.2",
"rimraf": "^2.5.4",
"mocha": "^3.1.0"
},
"npmName": "redux-react-firebase",
"npmFileMap": [
{
"basePath": "/build/",
"files": [
"*.js"
]
}
]
}