-
-
Notifications
You must be signed in to change notification settings - Fork 338
/
Copy pathpackage.json
135 lines (135 loc) · 4.56 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
{
"name": "react-native-reanimated-carousel",
"version": "4.0.0-alpha.4",
"description": "Simple carousel component.fully implemented using Reanimated 2.Infinitely scrolling, very smooth.",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"react-native": "src/index.tsx",
"types": "lib/typescript/index.d.ts",
"source": "src/index",
"files": [
"lib",
"src"
],
"scripts": {
"gif": "node scripts/makegif.js ./scripts/gif-works-directory",
"test": "jest run src/**/*",
"test:dev": "jest dev src/**/* --watch",
"typescript": "tsc --noEmit",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{js,ts,tsx}' --fix",
"dev": "watch 'yarn prepare' ./src",
"prepare": "bob build",
"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",
"clean": "del-cli lib",
"postinstall": "yarn clean && yarn prepare",
"version": "changeset version"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dohooo/react-native-reanimated-carousel.git"
},
"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-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "latest",
"@commitlint/config-conventional": "^11.0.0",
"@dohooo/eslint-config": "^0.0.7",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/jest-native": "^4.0.4",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/react-native": "^7.1.0",
"@types/jest": "^29.2.5",
"@types/react": "^18.2.15",
"@types/react-native": "^0.66.16",
"@types/react-test-renderer": "^18.0.7",
"babel-plugin-module-resolver": "^4.1.0",
"commitlint": "^11.0.0",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^5.0.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",
"metro-react-native-babel-preset": "^0.77.0",
"pod-install": "^0.1.0",
"prettier": "^2.0.5",
"react": "18.2.0",
"react-native": "0.72.3",
"react-native-builder-bob": "^0.18.1",
"react-native-gesture-handler": "~2.12.0",
"react-native-reanimated": "~3.3.0",
"react-test-renderer": "^18.2.0",
"sponsorkit": "^0.1.3",
"typescript": "^4.0.8",
"watch": "^1.0.2"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-native": "*",
"react": ">=18.0.0",
"react-native": ">=0.70.3",
"react-native-gesture-handler": ">=2.9.0",
"react-native-reanimated": ">=3.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-native": {
"optional": true
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn test && yarn lint && yarn typescript"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]"
}