-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
117 lines (117 loc) · 3.23 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
116
117
{
"name": "rn-wave-bottom-bar",
"version": "0.1.0-development",
"description": "🌊 Animated bottom bar for react-navigation, react-native.",
"main": "lib/commonjs/index.js",
"private": false,
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "lib/module/index.js",
"files": [
"src",
"lib"
],
"scripts": {
"test": "jest",
"lint": "eslint \"**/*.{js,ts,tsx,json}\"",
"typescript": "tsc --noEmit",
"prepare": "bob build && husky install",
"typescript:lint": "tslint --fix",
"typescript:typescheck": "tsc -p tsconfig.json --noEmit",
"semantic-release": "semantic-release"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"keywords": [
"react-native",
"react-navigation",
"bottom-bar",
"tab-bar"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged && yarn typescript:typescheck"
}
},
"lint-staged": {
"**/*.ts?(x)": [
"yarn typescript:lint"
]
},
"author": "jeremy.barbe.zion@gmail.com",
"license": "MIT",
"peerDependencies": {
"@react-navigation/bottom-tabs": "*",
"@react-navigation/native": "*",
"react": "*",
"react-native": "*",
"react-native-safe-area-context": "^4.2.1",
"react-native-vector-icons": "*"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"d3-shape": "^3.0.0"
},
"devDependencies": {
"@babel/core": "7.21.4",
"@babel/runtime": "7.21.0",
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"@react-native-community/bob": "0.17.1",
"@react-native-community/eslint-config": "3.2.0",
"@react-navigation/bottom-tabs": "6.5.7",
"@react-navigation/native": "6.1.6",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "10.0.3",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/jest": "29.5.1",
"@types/react-native-vector-icons": "6.4.13",
"@types/react-test-renderer": "18.0.0",
"@typescript-eslint/eslint-plugin": "5.59.0",
"add": "2.0.6",
"babel-jest": "^29.3.1",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "^8.0.0",
"jest": "29.5.0",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "13.2.1",
"metro-react-native-babel-preset": "0.76.2",
"prettier": "2.8.7",
"react": "18.2.0",
"react-native": "0.71.8",
"react-native-reanimated": "^2.13.0",
"react-native-safe-area-context": "4.5.1",
"react-native-svg": "13.9.0",
"react-native-testing-library": "2.2.0",
"react-native-typescript-transformer": "1.2.13",
"react-native-vector-icons": "9.2.0",
"react-test-renderer": "18.2.0",
"semantic-release": "21.0.1",
"ts-jest": "29.1.0",
"tslint": "6.1.3",
"tslint-react": "5.0.0",
"typescript": "5.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/Jm-Zion/rn-wave-bottom-bar.git"
},
"eslintIgnore": [
"node_modules/",
"lib/"
]
}