-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
121 lines (121 loc) · 3.46 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
{
"dependencies": {
"@react-native-async-storage/async-storage": "1.13.4",
"@walletconnect/react-native-dapp": "1.6.1",
"base-64": "1.0.0",
"buffer": "6.0.3",
"expo": "~42.0.0",
"expo-splash-screen": "~0.11.2",
"expo-status-bar": "~1.0.4",
"expo-updates": "~0.8.1",
"node-libs-browser": "2.2.1",
"path-browserify": "0.0.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "~0.63.4",
"react-native-crypto": "2.2.0",
"react-native-device-info": "^8.4.5",
"react-native-dotenv": "2.4.3",
"react-native-gesture-handler": "~1.10.2",
"react-native-get-random-values": "1.5.0",
"react-native-localhost": "1.0.0",
"react-native-mmkv": "^1.5.3",
"react-native-reanimated": "~2.2.0",
"react-native-screens": "~3.4.0",
"react-native-stream": "0.1.9",
"react-native-svg": "9.6.4",
"react-native-unimodules": "0.14.10",
"react-native-video": "^5.2.0",
"react-native-web": "~0.13.12",
"react-viro": "^2.17.0",
"web3": "1.3.1"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/jest": "^26.0.20",
"@types/node": "14.14.22",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"app-root-path": "3.0.0",
"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.0.0"
},
"scripts": {
"start": "react-native start",
"android": "node_modules/.bin/ts-node scripts/android",
"ios": "node_modules/.bin/ts-node scripts/ios",
"web": "node_modules/.bin/ts-node scripts/web",
"eject": "expo eject",
"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,
"name": "ar-nft",
"version": "1.0.0",
"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__/src/**/*.[jt]s?(x)"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint --fix --ext '.ts,.tsx,.js,.jsx' -c .eslintrc.json"
}
}