-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
149 lines (149 loc) · 4.75 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
145
146
147
148
149
{
"name": "napp",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"postinstall:ios": "cd ios && pod install ; cd ..",
"postinstall:nodeify": "rn-nodeify --install --hack",
"postinstall": "npm run postinstall:nodeify && npm run postinstall:ios",
"lint": "eslint --ignore-path .gitignore './src/**/*.{js,ts,tsx}'",
"lint:fix": "npm run lint -- --fix --quiet",
"start:native": "ENVFILE=.env && react-native start",
"start:android": "ENVFILE=.env && react-native run-android",
"start:ios": "ENVFILE=.env && react-native run-ios",
"clean": "./scripts/clean.sh"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix",
"pre-push": "npm run test"
}
},
"dependencies": {
"@nuls.io/account": "0.0.1",
"@nuls.io/core": "0.0.1",
"@tradle/react-native-http": "^2.0.1",
"assert": "^1.5.0",
"browserify-zlib": "^0.1.4",
"console-browserify": "^1.1.0",
"constants-browserify": "^1.0.0",
"dns.js": "^1.0.1",
"domain-browser": "^1.2.0",
"events": "^1.1.1",
"expo-local-authentication": "^6.0.0",
"expo-secure-store": "^6.0.0",
"https-browserify": "0.0.1",
"path-browserify": "0.0.0",
"punycode": "^1.4.1",
"querystring-es3": "^0.2.1",
"react": "16.8.3",
"react-native": "0.59.9",
"react-native-crypto": "^2.2.0",
"react-native-level-fs": "^3.0.1",
"react-native-os": "^1.2.5",
"react-native-randombytes": "^3.5.3",
"react-native-tcp": "^3.3.1",
"react-native-udp": "^2.6.1",
"react-native-unimodules": "^0.5.4",
"react-redux": "^7.1.1",
"readable-stream": "^1.0.33",
"redux": "^4.0.4",
"redux-saga": "^1.0.5",
"reselect": "^4.0.0",
"stream-browserify": "^1.0.0",
"string_decoder": "^0.10.31",
"styled-components": "^4.3.2",
"timers-browserify": "^1.4.2",
"tty-browserify": "0.0.0",
"url": "^0.10.3",
"util": "^0.10.4",
"vm-browserify": "0.0.4",
"xxhashjs": "^0.2.2"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/runtime": "7.5.5",
"@types/jest": "24.0.18",
"@types/react": "16.9.2",
"@types/react-native": "0.60.8",
"@types/react-redux": "^7.1.2",
"@types/react-test-renderer": "16.9.0",
"@types/styled-components": "^4.1.18",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-jest": "24.9.0",
"eslint": "^6.2.2",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-native": "^3.7.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.4",
"jest": "24.9.0",
"metro-react-native-babel-preset": "0.56.0",
"prettier": "^1.18.2",
"react-native-dotenv": "^0.2.0",
"react-test-renderer": "16.8.3",
"rn-nodeify": "^10.1.0",
"typescript": "3.5.3"
},
"jest": {
"preset": "react-native"
},
"react-native": {
"zlib": "browserify-zlib",
"console": "console-browserify",
"constants": "constants-browserify",
"crypto": "react-native-crypto",
"dns": "dns.js",
"net": "react-native-tcp",
"domain": "domain-browser",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"os": "react-native-os",
"path": "path-browserify",
"querystring": "querystring-es3",
"fs": "react-native-level-fs",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"dgram": "react-native-udp",
"stream": "stream-browserify",
"timers": "timers-browserify",
"tty": "tty-browserify",
"vm": "vm-browserify",
"tls": false
},
"browser": {
"zlib": "browserify-zlib",
"console": "console-browserify",
"constants": "constants-browserify",
"crypto": "react-native-crypto",
"dns": "dns.js",
"net": "react-native-tcp",
"domain": "domain-browser",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"os": "react-native-os",
"path": "path-browserify",
"querystring": "querystring-es3",
"fs": "react-native-level-fs",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"dgram": "react-native-udp",
"stream": "stream-browserify",
"timers": "timers-browserify",
"tty": "tty-browserify",
"vm": "vm-browserify",
"tls": false
}
}