-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
115 lines (115 loc) · 2.83 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@simform_solutions/react-native-audio-waveform",
"version": "2.1.2",
"description": "A React Native component to show audio waveform with ease in react native application",
"main": "lib/index",
"types": "lib/index.d.ts",
"contributors": [],
"author": "Simform Solutions",
"repository": {
"type": "git",
"url": "https://github.com/SimformSolutionsPvtLtd/react-native-audio-waveform"
},
"homepage": "https://github.com/SimformSolutionsPvtLtd/react-native-audio-waveform#readme",
"keywords": [
"react",
"react-native",
"typescript",
"rn",
"audio",
"waveform",
"audio-waveform",
"react-native-audio-waveform",
"react-native-audio",
"react-native-waveform",
"audio-chat",
"chat-audio"
],
"license": "MIT",
"files": [
"/lib",
"/ios",
"/android",
"*.podspec"
],
"scripts": {
"prepare": "husky install && yarn build",
"clean": "rm -rf node_modules",
"build": "rm -rf lib && tsc -p .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' -c .eslintrc --fix ",
"build:local": "yarn build && yarn pack",
"test": "jest",
"example": "yarn --cwd example"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@react-native-community/eslint-config": "^3.0.1",
"@testing-library/react-native": "^9.0.0",
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.202",
"@types/react-native": "^0.69.5",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-jest": "^27.4.6",
"eslint": "^7.32.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.1",
"jest": "^27.4.7",
"lint-staged": "^11.1.2",
"metro-react-native-babel-preset": "^0.70.3",
"prettier": "^2.7.1",
"react": "18.2.0",
"react-native": "0.72.7",
"react-test-renderer": "18.0.0",
"typescript": "^5.1.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn build && yarn test"
}
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"eslint"
]
},
"resolutions": {
"@types/react": "*"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupFilesAfterEnv": [],
"modulePathIgnorePatterns": []
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"lodash": "^4.17.21"
}
}