-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 loc) · 1.78 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
{
"name": "@gapur/react-native-accordion",
"version": "1.0.7",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build",
"eslint": "eslint '**/*.{ts,tsx}' --fix",
"prettier": "prettier --write \"**/*.+(ts|tsx|scss|json)\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gapur/react-native-accordion.git"
},
"keywords": [
"react",
"react-native",
"react-component",
"accordion",
"react-native-component",
"native",
"mobile",
"ios",
"android",
"collapse"
],
"author": "Gapur Kassym <[email protected]> (https://github.com/Gapur)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Gapur/react-native-accordion/issues"
},
"homepage": "https://github.com/Gapur/react-native-accordion#readme",
"devDependencies": {
"@types/react": "^17.0.37",
"@types/react-native": "^0.64.3",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.1",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-react-native": "^3.9.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"eslint --fix"
]
},
"peerDependencies": {
"react": "~18.0.0",
"react-native": "~0.69.3"
}
}