-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.02 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.02 KB
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
{
"name": "@surajmandalcell/react-node-firebase-chat",
"version": "1.4.2",
"description": "Actively maintained, community-driven Firebase BaaS for chat applications with an optional chat UI.",
"homepage": "https://flyer.chat",
"repository": {
"type": "git",
"url": "https://github.com/surajmandalcell/react-node-firebase-chat.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Suraj Mandal",
"contributors": [
"Suraj Mandal",
"Oleksandr Demchenko <alexdemchenko@yahoo.com>",
"Vitalii Danylov <vitaliidanylov1992@gmail.com>",
"Volodymyr Smolianinov <voidozzer@gmail.com>"
],
"license": "Apache-2.0",
"keywords": [
"chat",
"firebase",
"ios",
"android",
"typescript"
],
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"compile": "rm -rf lib && tsc -p .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "yarn compile",
"test": "jest",
"type-coverage": "type-coverage"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-react": "^7.16.7",
"@babel/runtime": "^7.15.4",
"@types/jest": "^27.0.2",
"@types/react-test-renderer": "^17.0.1",
"babel-jest": "^27.3.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^27.3.1",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"type-coverage": "^2.18.2",
"typescript": "^4.4.4"
},
"peerDependencies": {
"react": "*"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"typeCoverage": {
"cache": true,
"ignoreCatch": true,
"ignoreNonNullAssertion": true,
"ignoreUnread": true,
"is": 100,
"showRelativePath": true
},
"dependencies": {
"firebase": "^9.6.7"
}
}