forked from typeorm/expo-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
{
"name": "expo-example",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/node": "^10.1.3",
"@types/react": "^16.9.0",
"@types/react-native": "^0.60.15",
"@types/react-test-renderer": "^16.0.1",
"babel-plugin-transform-typescript-metadata": "^0.2.2",
"jest-expo": "^36.0.0",
"react-native-typescript-transformer": "^1.2.9",
"react-test-renderer": "^16.3.1",
"ts-jest": "^25.2.0",
"typescript": "^3.7.2"
},
"scripts": {
"start": "expo start",
"eject": "expo eject",
"android": "expo android",
"ios": "expo ios",
"test": "jest"
},
"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": "^36.0.0",
"expo-sqlite": "~8.0.0",
"react": "16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-36.0.1.tar.gz",
"react-native-sqlite-storage": "^4.1.0",
"reflect-metadata": "^0.1.13",
"tslib": "^1.9.1",
"typeorm": "github:cuibonobo/typeorm-package"
}
}