-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 KB
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
{
"name": "animated-scrollview",
"version": "2.0.2",
"description": "A react native scrollview that lets you easily animate its children based on the scrolling position, to achieve classical one-pager animations etc.",
"main": "build/index.js",
"types": "build/index.d.ts",
"keywords": [
"react native",
"react native web",
"animation",
"scrollview",
"slide in",
"slide out",
"landing page"
],
"scripts": {
"clear-build-folder": "rm -rf ./build",
"transpile": "tsc",
"fix-paths": "tsc-alias",
"build": "yarn clear-build-folder && yarn transpile && yarn fix-paths",
"dev": "yarn nodemon"
},
"files": [
"build"
],
"repository": "git@github.com:maks-io/animated-scrollview.git",
"author": "Markus Kurzmann <markus@kurzmann.io>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/react": "~18.2.79",
"@types/react-native": "~0.73.0",
"expo": "^51.0.38",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.5",
"react-native-reanimated": "~3.10.1",
"tsc": "^2.0.4",
"tsc-alias": "^1.8.10",
"typescript": "~5.3.3"
},
"peerDependencies": {
"react-native-reanimated": "3.x"
}
}