This repository was archived by the owner on Apr 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.6 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.6 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
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
{
"name": "react-native-smart-graph",
"description": "React Native library for creating animated dynamic graphs",
"version": "0.0.66-development",
"author": {
"name": "Mateusz Łopaciński",
"email": "lop.mateusz.2001@gmail.com"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-native-fontawesome": "^0.3.0",
"@gorhom/bottom-sheet": "^4",
"its-fine": "^1.1.1",
"react-native-skia-responsive-text": "^1.1.3",
"react-wise-memo": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/preset-env": "^7.22.4",
"@babel/runtime": "^7.22.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^10.0.3",
"@semantic-release/release-notes-generator": "^11.0.3",
"@shopify/react-native-skia": "^0.1.211",
"@tsconfig/react-native": "^3.0.2",
"@types/jest": "^29.5.2",
"@types/react": "^18.2.7",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.5.0",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-react-require": "^4.0.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"docsify-darklight-theme": "^3.2.0",
"eslint": "^8.41.0",
"eslint-config-react-native-matipl01": "^1.0.3",
"glob": "^10.3.4",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"metro-react-native-babel-preset": "^0.76.6",
"react": "^18.2.0",
"react-native": "^0.72.0",
"react-native-builder-bob": "^0.20.4",
"react-native-gesture-handler": "^2.10.2",
"react-native-reanimated": "^3.5.4",
"react-native-svg": "^13.9.0",
"react-test-renderer": "^18.2.0",
"semantic-release": "^22.0.12",
"syncpack": "^10.5.1",
"ts-jest": "^29.1.0",
"tsc-alias": "^1.8.6",
"typescript": "^5.1.0"
},
"files": [
"dist",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint:fix",
"bash -c tsc --noEmit",
"yarn format:code",
"yarn format:deps"
]
},
"main": "dist/commonjs/index",
"module": "dist/module/index",
"peerDependencies": {
"@shopify/react-native-skia": ">=0.1.208",
"react": ">=18.0.0",
"react-native": ">=0.71.8",
"react-native-gesture-handler": ">=2.0.0",
"react-native-reanimated": ">=3.5.1",
"react-native-svg": ">=13.0.0"
},
"publishConfig": {
"access": "public"
},
"react-native": "dist/src/index",
"repository": "MatiPl01/react-native-smart-graph",
"scripts": {
"android": "react-native run-android",
"build": "yarn clean && bob build && yarn declarations:emit",
"clean": "rm -rf dist && rm -f *.tgz",
"declarations:emit": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"docs": "docsify serve docs",
"format:code": "prettier --write .",
"format:deps": "syncpack format",
"ios": "react-native run-ios",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"pod": "cd ios && pod install && cd ..",
"postbuild": "node scripts/copySources.js && node scripts/copyTsConfig.js",
"prepack": "yarn build",
"prepare": "husky install",
"semantic-release": "semantic-release",
"start": "react-native start",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"source": "dist/src/index",
"types": "dist/types/index"
}