-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
61 lines (61 loc) · 1.62 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
{
"name": "expo-example",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/jest": "^22.2.3",
"@types/node": "^10.1.3",
"@types/react": "~17.0.21",
"@types/react-native": "~0.67.6",
"@types/react-test-renderer": "^16.0.1",
"babel-plugin-transform-typescript-metadata": "^0.2.2",
"jest-expo": "^45.0.0",
"react-native-typescript-transformer": "^1.2.9",
"react-test-renderer": "^16.3.1",
"ts-jest": "^25.2.0",
"typescript": "~4.3.5"
},
"scripts": {
"start": "expo start --dev-client",
"eject": "expo eject",
"android": "expo run:android",
"ios": "expo run:ios",
"test": "jest",
"postinstall": "patch-package"
},
"jest": {
"preset": "jest-expo",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"cacheDirectory": ".jest/cache"
},
"dependencies": {
"expo": "^45.0.0",
"expo-splash-screen": "~0.15.1",
"expo-sqlite": "~10.2.0",
"expo-status-bar": "~1.3.0",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "0.68.1",
"react-native-sqlite-storage": "^4.1.0",
"react-native-web": "0.17.7",
"reflect-metadata": "^0.1.13",
"tslib": "^1.9.1",
"typeorm": "^0.3.6"
}
}