forked from TecladistaProd/rn-antmedia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.24 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
{
"name": "rn-antmedia",
"version": "1.0.2-beta",
"description": "Port of webrtc-adaptor (AntMedia) to react-native using react-native-webrtc",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/rn-antmedia.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"prebuild": "sucrase-node scripts/prebuild.ts",
"build": "cross-env NODE_ENV=production tsdx build",
"postbuild": "sucrase-node scripts/postbuild.ts",
"commit": "git add . && git-cz",
"deploy": "yarn commit",
"postdeploy": "git push origin master"
},
"repository": {
"type": "git",
"url": "https://github.com/TecladistaProd/rn-antmedia"
},
"keywords": [
"JavaScript",
"Antmedia",
"React",
"Native",
"React",
"WebRTC"
],
"author": "TecladistaProd",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@react-native-community/eslint-config": "^2.0.0",
"@types/react": "^17.0.0",
"@types/react-native": "^0.63.45",
"@types/react-native-webrtc": "^1.75.2",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"commitizen": "^4.2.3",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"metro-react-native-babel-preset": "^0.64.0",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-native": "^0.63.4",
"react-native-webrtc": "^1.87.3",
"sucrase": "^3.17.0",
"ts-loader": "^8.0.14",
"tsconfig-paths": "^3.9.0",
"tsdx": "0.11.0",
"typescript": "^4.1.3"
},
"dependencies": {},
"peerDependencies": {
"react": "^17.0.1",
"react-native": "^0.63.4",
"react-native-webrtc": "^1.87.3"
}
}