-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.28 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
{
"name": "SQLite-TypeORM",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"postinstall": "rn-nodeify --install stream,crypto,vm,events --hack"
},
"dependencies": {
"buffer": "5.4.3",
"events": "^1.0.0",
"react": "16.9.0",
"react-native": "0.61.5",
"react-native-crypto": "^2.2.0",
"react-native-randombytes": "^3.5.3",
"react-native-sqlite-storage": "^4.1.0",
"readable-stream": "^1.0.33",
"reflect-metadata": "^0.1.13",
"stream-browserify": "^1.0.0",
"typeorm": "^0.2.22",
"vm-browserify": "0.0.4"
},
"devDependencies": {
"@babel/core": "7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/runtime": "7.8.3",
"@react-native-community/eslint-config": "0.0.5",
"@types/jest": "^24.9.0",
"@types/node": "^13.1.8",
"@types/react": "^16.9.17",
"@types/react-native": "^0.61.0",
"@types/react-test-renderer": "^16.9.1",
"babel-jest": "24.9.0",
"eslint": "6.8.0",
"jest": "24.9.0",
"metro-react-native-babel-preset": "0.56.4",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.12.0",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "16.9.0",
"rn-nodeify": "^10.2.0",
"ts-jest": "^24.3.0",
"typescript": "^3.7.5"
},
"jest": {
"preset": "react-native"
},
"react-native": {
"crypto": "react-native-crypto",
"_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",
"stream": "stream-browserify",
"vm": "vm-browserify"
},
"browser": {
"crypto": "react-native-crypto",
"_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",
"stream": "stream-browserify",
"vm": "vm-browserify"
}
}