-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.81 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": "orangepaper",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "cp config/index.ts src/config/index.ts && node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"android:dev": "cd ./android && ./gradlew app:assembleDebug && ./gradlew installDebug",
"android:build": "cd ./android && ./gradlew clean && ./gradlew app:assembleRelease"
},
"dependencies": {
"@types/hoist-non-react-statics": "^3.0.1",
"date-fns": "^1.30.1",
"hoist-non-react-statics": "^3.3.0",
"react": "16.6.3",
"react-native": "0.57.8",
"react-native-amplitude-analytics": "^0.2.6",
"react-native-device-info": "^0.26.2",
"react-native-dropdownalert": "^3.9.1",
"react-native-fast-image": "^5.1.2",
"react-native-gesture-handler": "^1.0.15",
"react-native-sentry": "^0.41.1",
"react-navigation": "^3.2.0",
"react-navigation-stack": "^1.0.9"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/react": "^16.7.20",
"@types/react-native": "^0.57.29",
"@types/react-navigation": "^3.0.1",
"@types/react-test-renderer": "^16.0.3",
"babel-jest": "23.6.0",
"jest": "23.6.0",
"metro-react-native-babel-preset": "0.51.1",
"react-native-typescript-transformer": "^1.2.11",
"react-test-renderer": "16.6.3",
"ts-jest": "^23.10.5",
"typescript": "^3.2.4"
},
"jest": {
"preset": "react-native",
"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"
}
}