-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
102 lines (102 loc) · 2.85 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
{
"name": "btcpayer",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"cz": "git-cz",
"format:all": "prettier --write .",
"ios": "react-native run-ios",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"precommit": "lint-staged && echo \"skipping tests\"",
"release": "standard-version",
"start": "react-native start",
"test": "jest",
"storybook": "start-storybook -p 7007",
"build-storybook": "build-storybook"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.15.16",
"@react-navigation/bottom-tabs": "^6.1.0",
"@react-navigation/elements": "^1.3.0",
"@react-navigation/native": "^6.0.6",
"@react-navigation/stack": "^6.0.11",
"axios": "^0.24.0",
"query-string": "^7.0.1",
"react": "17.0.2",
"react-native": "0.66.3",
"react-native-base64": "^0.2.1",
"react-native-gesture-handler": "^1.10.3",
"react-native-qrcode-svg": "^6.1.1",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.10.2",
"react-native-svg": "^12.1.1",
"react-native-vision-camera": "^2.12.0",
"react-query": "^3.32.3"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@storybook/addon-actions": "^5.3",
"@storybook/addon-knobs": "^5.3",
"@storybook/addon-links": "^5.3",
"@storybook/addon-ondevice-actions": "^5.3.23",
"@storybook/addon-ondevice-knobs": "^5.3.25",
"@storybook/react-native": "^5.3.25",
"@storybook/react-native-server": "^5.3.23",
"@types/jest": "^26.0.23",
"@types/react-native": "^0.66.4",
"@types/react-native-base64": "^0.2.0",
"@types/react-test-renderer": "^17.0.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.3",
"babel-plugin-module-resolver": "^4.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.14.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"lint-staged": "^12.1.5",
"metro-react-native-babel-preset": "^0.66.2",
"prettier": "^2.5.1",
"react-dom": "17.0.2",
"react-test-renderer": "17.0.2",
"standard-version": "^9.3.2",
"typescript": "^4.4.4"
},
"resolutions": {
"@types/react": "^17"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn precommit"
}
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"lint-staged": {
"*.+(ts|tsx)": [
"eslint"
],
"*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|graphql|mdx)": [
"prettier --write",
"git add"
]
}
}