This repository has been archived by the owner on Nov 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 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
{
"name": "app",
"version": "1.0.0",
"private": true,
"main": "./index.tsx",
"scripts": {
"android": "expo start --android",
"ios": "expo start --ios",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint-staged": "lint-staged --allow-empty",
"prepare": "chmod +x ./node_modules/husky/lib/bin.js && husky install",
"release": "standard-version",
"start": "expo start --clear",
"test": "jest --watchAll",
"test:ci": "jest --ci --coverage --updateSnapshot",
"web": "expo start --web"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"pnpm exec eslint . --fix",
"pnpm exec prettier . --write"
],
"**/*.{json,md,yml,yaml}": [
"pnpm exec prettier . --write"
]
},
"dependencies": {
"@azure/core-asynciterator-polyfill": "1.0.2",
"@ethersproject/shims": "5.7.0",
"@lens-protocol/react": "0.5.1",
"@lens-protocol/react-native-lens-ui-kit": "0.2.7",
"@peculiar/webcrypto": "1.4.3",
"@pushprotocol/reactnative": "0.2.0",
"@pushprotocol/restapi": "0.8.1",
"@react-native-async-storage/async-storage": "1.17.11",
"@react-native-masked-view/masked-view": "0.2.9",
"@react-navigation/native": "6.1.6",
"@xmtp/xmtp-js": "7.13.1",
"ethers": "5.7.2",
"expo": "48.0.9",
"expo-crypto-polyfills": "^1.1.0",
"expo-file-system": "~15.2.2",
"expo-linear-gradient": "~12.1.2",
"expo-status-bar": "1.4.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.71.5",
"react-native-fetch-api": "3.0.0",
"react-native-get-random-values": "1.8.0",
"react-native-polyfill-globals": "3.1.0",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"react-native-svg": "13.4.0",
"react-native-url-polyfill": "1.3.0",
"react-native-video": "5.2.1",
"react-native-web": "0.18.12",
"react-native-youtube": "2.0.2",
"safe-buffer": "5.2.1",
"text-encoding": "0.7.0",
"web-streams-polyfill": "3.2.1"
},
"devDependencies": {
"@babel/core": "7.21.4",
"@commitlint/cli": "17.4.4",
"@commitlint/config-conventional": "17.4.4",
"@commitlint/types": "17.4.4",
"@jest/types": "29.5.0",
"@react-native-community/eslint-config": "3.2.0",
"@types/react": "18.0.31",
"@types/react-native": "0.71.5",
"@types/react-native-get-random-values": "1.8.0",
"babel-preset-expo": "9.3.1",
"eslint": "8.35.0",
"eslint-config-prettier": "8.7.0",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-expo": "48.0.2",
"lint-staged": "13.2.0",
"prettier": "2.8.7",
"react-test-renderer": "18.2.0",
"standard-version": "9.5.0",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
},
"overrides": {
"pbkdf2": "3.1.2"
}
}
}