-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
144 lines (144 loc) · 4.25 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"dependencies": {
"@expo/vector-icons": "^12.0.0",
"@react-native-async-storage/async-storage": "1.13.4",
"@react-navigation/material-bottom-tabs": "^6.0.9",
"@react-navigation/native": "^6.0.6",
"@react-navigation/native-stack": "^6.2.5",
"@react-navigation/stack": "^6.0.11",
"@walletconnect/react-native-dapp": "1.6.1",
"base-64": "1.0.0",
"buffer": "6.0.3",
"expo": "^43.0.0",
"expo-image-picker": "~11.0.3",
"expo-splash-screen": "~0.13.5",
"expo-status-bar": "~1.1.0",
"expo-updates": "~0.10.13",
"nft.storage": "^5.1.3",
"node-libs-browser": "2.2.1",
"path-browserify": "0.0.0",
"react": "17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^7.21.2",
"react-native": "0.64.3",
"react-native-crypto": "2.2.0",
"react-native-dotenv": "2.4.3",
"react-native-elements": "^3.4.2",
"react-native-gesture-handler": "~1.10.2",
"react-native-get-random-values": "1.5.0",
"react-native-localhost": "1.0.0",
"react-native-paper": "^4.10.1",
"react-native-reanimated": "~2.2.0",
"react-native-safe-area-context": "3.3.2",
"react-native-screens": "~3.8.0",
"react-native-stream": "0.1.9",
"react-native-svg": "9.6.4",
"react-native-vector-icons": "^9.0.0",
"react-native-web": "~0.17.1",
"web3": "1.3.1"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/plugin-proposal-private-property-in-object": "7.15.4",
"@babel/preset-env": "7.15.6",
"@babel/preset-typescript": "7.15.0",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.0",
"@types/jest": "^26.0.20",
"@types/node": "14.14.22",
"@types/react": "~17.0.21",
"@types/react-native": "~0.64.12",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"app-root-path": "3.0.0",
"babel-jest": "27.2.3",
"chai": "^4.2.0",
"chokidar": "3.5.1",
"commitizen": "4.2.3",
"cz-conventional-changelog": "^3.2.0",
"dotenv": "8.2.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-native": "3.10.0",
"ethereum-waffle": "^3.2.1",
"gh-pages": "^3.2.3",
"hardhat": "2.0.6",
"husky": "4.3.8",
"jest": "26.6.3",
"lint-staged": "10.5.3",
"platform-detect": "3.0.1",
"prettier": "2.2.1",
"react-test-renderer": "17.0.1",
"ts-node": "9.1.1",
"typescript": "~4.3.5"
},
"scripts": {
"start": "expo start --dev-client",
"android": "node_modules/.bin/ts-node scripts/android",
"ios": "expo run:ios",
"web": "node_modules/.bin/ts-node scripts/web",
"eject": "expo eject",
"audit": "npx yarn-audit-fix",
"postinstall": "node_modules/.bin/ts-node scripts/postinstall",
"test": "npx hardhat test && jest",
"web:deploy": "expo build:web && gh-pages -d web-build"
},
"private": true,
"homepage": "https://cawfree.github.io/create-react-native-dapp",
"license": "MIT",
"contributors": [
{
"name": "@cawfree",
"url": "https://github.com/cawfree"
}
],
"keywords": [
"react",
"react-native",
"blockchain",
"dapp",
"ethereum",
"web3",
"starter",
"react-native-web"
],
"react-native": {
"stream": "react-native-stream",
"crypto": "react-native-crypto",
"path": "path-browserify",
"process": "node-libs-browser/mock/process"
},
"jest": {
"preset": "react-native",
"testMatch": [
"**/__tests__/frontend/**/*.[jt]s?(x)"
],
"transformIgnorePatterns": [
"node_modules/(?!@ngrx|(?!deck.gl)|ng-dynamic)"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook",
"pre-commit": "lint-staged && tsc",
"pre-push": "test"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint --fix --ext '.ts,.tsx,.js,.jsx' -c .eslintrc.json"
},
"name": "unique-vyapaari",
"version": "1.0.0"
}