forked from sidferreira/aor-firebase-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.75 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
{
"name": "aor-firebase-client",
"version": "0.3.1",
"description": "Firebase Client for Admin On Rest",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build": "babel src -d lib",
"prepare": "yarn run build"
},
"author": "Sid Ferreira",
"repository": {
"type": "git",
"url": "https://github.com/sidferreira/aor-firebase-client.git"
},
"license": "ISC",
"files": [
"LICENSE",
"*.md",
"lib",
"src"
],
"keywords": [
"admin-on-rest",
"react",
"firebase",
"rest"
],
"dependencies": {
"@firebase/app-types": "0.x",
"firebase": "^4.13.1",
"react": "^15.6.2",
"react-dom": "^15.6.1",
"sort-by": "^1.2.0"
},
"devDependencies": {
"admin-on-rest": "^1.4.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"eslint": "^4.7.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-jsx": "^4.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"jest-localstorage-mock": "^1.2.0",
"react-test-renderer": "^15.6.1"
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"jest-localstorage-mock"
]
}
}