forked from akveo/kittenTricks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.64 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "kitten-tricks-with-typescript",
"version": "1.0.0",
"private": true,
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"author": "totaldesigner",
"pre-commit": "lint",
"scripts": {
"start": "react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"lint": "npm run lint:tslint",
"lint:tslint": "tslint \"app/**/*.tsx\" \"app/**/*.ts\" \"test/**/*.tsx\" \"test/**/*.ts\"",
"test": "node node_modules/jest/bin/jest.js --coverage",
"test:clean": "rimraf ./coverage",
"test:watch": "jest --watchAll",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"expo": "^26.0.0",
"expo-analytics": "^1.0.7",
"hoist-non-react-statics": "2.3.1",
"lodash": "4.17.4",
"moment": "2.20.1",
"react": "^16.3.0",
"react-native": "^0.54.4",
"react-native-keyboard-spacer": "^0.4.1",
"react-native-linear-gradient": "^2.4.0",
"react-native-progress-bar": "^0.1.2",
"react-native-switch-pro": "^0.4.10",
"react-native-ui-kitten": "^3.0.0",
"react-navigation": "^1.5.8",
"tslib": "^1.9.0",
"victory-native": "^0.17.3"
},
"devDependencies": {
"@types/fbemitter": "^2.0.32",
"@types/jest": "^22.2.2",
"@types/react": "^16.0.41",
"@types/react-native": "^0.52.19",
"@types/react-test-renderer": "^16.0.1",
"babel-preset-env": "^1.6.1",
"jest-expo": "^26.0.0",
"react-native-scripts": "^1.13.1",
"react-native-typescript-transformer": "*",
"react-test-renderer": "^16.3.0",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.2",
"tslint": "^5.9.1",
"tslint-config-prettier": "*",
"tslint-react": "^3.5.1",
"typescript": "^2.8.1"
},
"babel": {
"presets": [
"babel-preset-expo"
],
"env": {
"development": {
"plugins": [
"transform-react-jsx-source"
]
}
}
},
"jest": {
"preset": "jest-expo",
"coverageThreshold": {
"global": {
"statements": 98,
"branches": 91,
"functions": 98,
"lines": 98
}
},
"transform": {
"^.+\\.jsx?$": "<rootDir>/node_modules/babel-jest",
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation)/"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"ios.ts",
"ios.tsx",
"android.ts",
"android.tsx"
]
}
}