-
Notifications
You must be signed in to change notification settings - Fork 134
/
package.json
54 lines (54 loc) · 1.29 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
{
"version": "5.0.1",
"name": "react-native-root-siblings",
"repository": {
"type": "git",
"url": "https://github.com/magicismight/react-native-root-siblings"
},
"files": [
"lib"
],
"license": "MIT",
"main": "./lib/RootSiblingsManager.js",
"description": "react native root sibling elements manager",
"scripts": {
"lint": "npx tsc --noEmit && npx eslint \"./src/**/*.@(ts|tsx)\" --fix",
"test": "echo no tests",
"build": "npx tsc",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"./src/**/*.{ts,tsx}": [
"npm run lint",
"git add"
]
},
"devDependencies": {
"@types/react": "^18.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"keywords": [
"react-component",
"react-native",
"modal",
"ios",
"android"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}