forked from dohooo/react-native-reanimated-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
175 lines (175 loc) · 5.66 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
{
"name": "react-native-reanimated-carousel",
"version": "3.3.0",
"description": "Simple carousel component.fully implemented using Reanimated 2.Infinitely scrolling, very smooth.",
"main": "lib/commonjs/index",
"react-native": "src/index.tsx",
"types": "lib/typescript/index.d.ts",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"react-native-reanimated-carousel.podspec",
"!lib/typescript/example",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"gif": "node scripts/makegif.js ./scripts/gif-works-directory",
"test": "jest run src/**/*",
"test:dev": "jest dev src/**/*",
"typescript": "tsc --noEmit",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{js,ts,tsx}' --fix",
"dev": "yarn watch 'yarn prepare' ./src",
"prepare": "bob build",
"release": "yarn prepare && dotenv release-it --no-git.requireUpstream",
"preRelease": "yarn prepare && dotenv release-it --no-git.requireUpstream --preRelease=beta",
"ios": "yarn --cwd exampleExpo ios",
"ios:pretty": "yarn --cwd exampleExpo ios:pretty",
"web": "yarn --cwd exampleExpo web",
"web:pretty": "yarn --cwd exampleExpo web:pretty",
"android": "yarn --cwd exampleExpo android",
"android:pretty": "yarn --cwd exampleExpo android:pretty",
"pods": "cd exampleExpo && pod-install --quiet",
"bootstrap": "yarn && yarn pods",
"deploy": "cd exampleExpo && yarn deploy",
"publish": "yarn run prepare && changeset publish",
"version": "changeset version"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": "https://github.com/dohooo/react-native-reanimated-carousel",
"author": "Doho <[email protected]> (https://github.com/dohooo)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dohooo/react-native-reanimated-carousel/issues"
},
"homepage": "https://github.com/dohooo/react-native-reanimated-carousel#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@changesets/changelog-git": "^0.1.14",
"@changesets/cli": "^2.26.0",
"@commitlint/config-conventional": "^11.0.0",
"@dohooo/eslint-config": "^0.0.7",
"@react-native-community/eslint-config": "^2.0.0",
"@release-it/conventional-changelog": "^2.0.0",
"@types/jest": "^29.2.5",
"@types/react": "~17.0.2",
"@types/react-native": "^0.66.16",
"@types/react-native-snap-carousel": "^3.8.5",
"babel-plugin-inline-dotenv": "^1.6.0",
"babel-plugin-module-resolver": "^4.1.0",
"commitlint": "^11.0.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv-cli": "^5.1.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.1.3",
"gifify": "^2.4.3",
"husky": "^4.2.5",
"jest": "^29.3.1",
"pod-install": "^0.1.0",
"prettier": "^2.0.5",
"react": "16.13.1",
"react-native": "0.63.4",
"react-native-builder-bob": "^0.18.1",
"react-native-gesture-handler": "^1.10.3",
"react-native-reanimated": "2.8.0",
"release-it": "^14.2.2",
"sponsorkit": "^0.1.3",
"typescript": "^4.0.8"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.6.0",
"react-native-gesture-handler": "*",
"react-native-reanimated": ">=2.7.0"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/exampleExpo/node_modules",
"<rootDir>/exampleBare/node_modules",
"<rootDir>/lib/"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn test && yarn lint && yarn typescript"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "angular",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{}
]
},
"infile": "CHANGELOG.md"
}
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs",
{
"configFile": "./babel.config.js"
}
],
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}