-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.41 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
{
"name": "react-rainbow-firebase",
"version": "0.1.0-canary.40",
"description": "React Rainbow Firebase",
"keywords": [
"react",
"components",
"library",
"rainbow",
"firebase"
],
"main": "components/index.js",
"files": [
"components"
],
"authors": [
"Reinier Guerra",
"Leandro Torres"
],
"repository": {
"type": "git",
"url": "git://github.com/90milesbridge/react-rainbow-firebase.git"
},
"license": "MIT",
"dependencies": {
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-json-view": "^1.19.1",
"react-rainbow-components": "1.3.1-canary.4973a7a",
"react-redux": "^7.1.0",
"react-scripts": "^3.1.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "npx styleguidist server",
"build": "npx babel ./src --out-dir ./components",
"build:library": "npx styleguidist build",
"test": "react-scripts test",
"test:ci": "CI=true yarn test",
"lint": "eslint src",
"eject": "react-scripts eject",
"deploy:library": "yarn build:library && firebase deploy",
"clean": "rm -Rf components",
"prepublishOnly": "yarn clean && yarn build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"peerDependencies": {
"firebase": "^9.0.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"file-loader": "^4.2.0",
"firebase": "^9.17.1",
"firebase-tools": "^7.2.2",
"node-sass": "^4.12.0",
"pre-push": "^0.1.1",
"react-styleguidist": "^9.1.14",
"redux-form": "^8.2.1",
"sass-loader": "^7.2.0",
"style-loader": "^1.0.0"
},
"pre-push": [
"lint",
"test:ci"
]
}