-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
103 lines (103 loc) · 3.21 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
{
"name": "react-native-hud-view",
"version": "2.1.0",
"description": "A lightweight, flexible, and customizable progress indicator library for React Native. The library provides an easy way to show a HUD (Heads-up Display) when you need to indicate progress or loading in your application.",
"keywords": [
"react-native",
"react-native-component",
"react-component",
"react",
"native",
"hud",
"ios",
"android"
],
"homepage": "https://github.com/mohammedhammoud/react-native-hud-view#readme",
"bugs": {
"url": "https://github.com/mohammedhammoud/react-native-hud-view/issues"
},
"repository": "https://github.com/mohammedhammoud/react-native-hud-view.git",
"license": "MIT",
"author": "Mohammed Hammoud",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "yarn clean && tsc -p tsconfig.build.json",
"clean": "rimraf dist",
"dev": "yarn clean && tsc -w -p tsconfig.build.json",
"lint": "eslint . --config .eslintrc --cache --ext .ts,.tsx,.js,.jsx",
"lint:ci": "yarn lint --quiet",
"lint:fix": "yarn lint --fix",
"prepare": "husky install",
"test": "TS_JEST_DISABLE_VER_CHECKER=true jest",
"test:ci": "yarn test --ci",
"test:watch": "yarn test --watch -u",
"typecheck": "tsc --noEmit"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn typecheck && yarn test"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": [
"yarn lint:fix"
]
},
"jest": {
"cacheDirectory": ".jest/cache",
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!(@react-native|react-native)/)"
],
"setupFilesAfterEnv": [
"./jest.setup-after-env.js"
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testing-library/jest-native": "^5.4.2",
"@testing-library/react-native": "^12.0.1",
"@types/jest": "^29.5.0",
"@types/react": "^18.2.0",
"@types/react-native": "^0.71.6",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"husky": "^8.0.3",
"import-sort-cli": "^6.0.0",
"import-sort-style-eslint-typescript-hero": "^1.1.0",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"metro-react-native-babel-preset": "^0.76.3",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-native": "^0.71.7",
"react-test-renderer": "^18.2.0",
"rimraf": "^5.0.0",
"semantic-release": "^21.0.1",
"typescript": "^5.0.3"
},
"peerDependencies": {
"react": "^18.2.0",
"react-native": "^0.71.7"
}
}