-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 4.08 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": "react-native-demo-albums",
"version": "0.2.1",
"description": "react-native-demo-albums",
"private": false,
"main": "index.js",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"web": "expo start --web",
"start": "react-native start",
"test": "jest",
"lint": "tsc --noEmit && eslint --ext .js,.jsx,.ts,.tsx ./",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"patch-publish-push": "npm run release:patch && git push --no-verify",
"postinstall": "bash ./scripts/fix-for-web.sh && npx husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"transform-gql": "graphql-schema-typescript generate-ts \"./src/feats/feat-graphql\" --output \"./src/feats/feat-graphql/graphqlTypes.d.ts\""
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --ext .tsx --ext .ts src/ --fix"
]
},
"husky": {
"hooks": {
"#pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "lint-staged && (git-branch-is main && git pull --rebase --no-verify && npm run patch-publish-push) || echo 'not master'"
}
},
"jest": {
"preset": "react-native"
},
"dependencies": {
"@apollo/client": "~3.3.9",
"@commitlint/cli": "~11.0.0",
"@commitlint/config-conventional": "~11.0.0",
"@react-native-async-storage/async-storage": "~1.13.4",
"@react-native-community/masked-view": "0.1.10",
"@react-native-masked-view/masked-view": "~0.2.1",
"@react-navigation/material-bottom-tabs": "~5.3.13",
"@react-navigation/material-top-tabs": "~5.3.13",
"@react-navigation/native": "~5.9.2",
"@react-navigation/stack": "~5.14.2",
"@types/react-native-snap-carousel": "~3.8.2",
"apollo3-cache-persist": "~0.9.1",
"expo": "~40.0.0",
"expo-app-loading": "~1.0.1",
"expo-font": "~8.4.0",
"expo-splash-screen": "~0.8.0",
"expo-updates": "~0.4.0",
"git-branch-is": "~4.0.0",
"graphql": "~15.5.0",
"graphql-tag": "~2.11.0",
"graphql.macro": "~1.4.2",
"lodash": "~4.17.20",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-hook-form": "~5.7.2",
"react-native": "~0.63.4",
"react-native-gesture-handler": "~1.8.0",
"react-native-paper": "^4.7.1",
"react-native-paper-form-builder": "~1.0.9",
"react-native-portal": "~1.3.0",
"react-native-reanimated": "~1.13.0",
"react-native-safe-area-context": "3.1.9",
"react-native-screens": "~2.15.2",
"react-native-skeleton-content": "~1.0.20",
"react-native-skeleton-placeholder": "~3.0.2",
"react-native-snap-carousel": "~3.9.1",
"react-native-svg": "12.1.0",
"react-native-swipe-list-view": "~3.2.6",
"react-native-tab-view": "~2.15.2",
"react-native-unimodules": "~0.12.0",
"react-native-vector-icons": "~8.0.0",
"react-native-web": "~0.13.12",
"reanimated-bottom-sheet": "~1.0.0-alpha.22"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@react-native-community/eslint-config": "~2.0.0",
"@svgr/cli": "~5.5.0",
"@types/lodash": "~4.14.168",
"@types/react": "~16.9.35",
"@types/react-dom": "~16.9.8",
"@types/react-native": "~0.63.40",
"@typescript-eslint/eslint-plugin": "~4.15.0",
"@typescript-eslint/parser": "~4.15.0",
"babel-preset-expo": "~8.3.0",
"eslint": "~7.19.0",
"eslint-config-airbnb-typescript": "~12.3.1",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-jsx-a11y": "~6.4.1",
"eslint-plugin-react": "~7.22.0",
"eslint-plugin-react-hooks": "~4.2.0",
"graphql-schema-typescript": "~1.5.2",
"husky": "~4.3.8",
"jest-expo": "~40.0.0",
"lint-staged": "~10.5.4",
"pinst": "~2.1.4",
"react-native-svg-transformer": "~0.14.3",
"standard-version": "~9.1.0",
"typescript": "~4.0.0"
},
"author": {
"name": "Andrey \"Kinjeiro\" Kuzmin",
"email": "[email protected]"
},
"contributors": [
]
}