forked from blefebvre/react-native-sqlite-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.79 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
{
"name": "RNSQLiteDemo",
"version": "0.0.1",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"tsc": "tsc",
"watch": "npm run tsc -- -w",
"start:macos": "node node_modules/react-native-macos/local-cli/cli.js start --use-react-native-macos"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.13.2",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/netinfo": "^5.9.9",
"@react-navigation/native": "^5.8.10",
"@react-navigation/stack": "^5.12.8",
"moment": "^2.24.0",
"react": "16.11.0",
"react-native": "0.62.2",
"react-native-fs": "^2.16.4",
"react-native-gesture-handler": "^1.9.0",
"react-native-macos": "^0.62.21",
"react-native-reanimated": "^1.13.2",
"react-native-restart": "0.0.13",
"react-native-safe-area-context": "^3.1.9",
"react-native-screens": "^2.16.1",
"react-native-sqlite-storage": "^5.0.0",
"rn-fetch-blob": "^0.12.0",
"shitty-qs": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@react-native-community/eslint-config": "^0.0.7",
"@types/jest": "^25.1.2",
"@types/react": "^16.9.56",
"@types/react-native": "^0.62.2",
"@types/react-native-fs": "^2.13.0",
"@types/react-native-sqlite-storage": "^3.3.2",
"@types/react-test-renderer": "^16.9.2",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"metro-react-native-babel-preset": "^0.58.0",
"prettier": "^1.19.1",
"react-test-renderer": "16.11.0",
"typescript": "^3.9.7"
},
"jest": {
"preset": "react-native",
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
}
}