-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·74 lines (74 loc) · 2.55 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "KlinikMataHasanuddin",
"version": "1.1.0",
"private": true,
"devDependencies": {
"@types/jest": "^20.0.8",
"@types/react": "^16.0.5",
"@types/react-native": "^0.47.7",
"@types/react-native-vector-icons": "^4.3.1",
"@types/react-navigation": "^1.0.19",
"babel-eslint": "8.1.0",
"babel-jest": "22.0.4",
"babel-preset-react-native": "^3.0.1",
"concurrently": "3.5.1",
"eslint": "4.14.0",
"husky": "0.14.3",
"jest-expo": "^24.0.0",
"react-native-scripts": "1.8.1",
"react-test-renderer": "16.2.0",
"rimraf": "^2.6.2",
"ts-jest": "22.0.0",
"tslint": "^5.8.0",
"typescript": "2.6.2"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"scripts": {
"start": "npm run build && concurrently -r 'npm run watch' 'react-native-scripts start'",
"eject": "react-native-scripts eject",
"jest": "node node_modules/jest/bin/jest.js",
"watch": "npm run build -- -w",
"ios": "npm run build && concurrently -r 'npm run watch' 'react-native-scripts ios'",
"android": "npm run build && concurrently -r 'npm run watch' 'react-native-scripts android'",
"tsc": "tsc",
"clean": "rimraf artifacts",
"build": "npm run clean && npm run tsc --",
"lint": "tslint src/**/*.ts",
"test": "yarn jest --no-verify && tslint src/**/*.tsx && eslint .",
"precommit": "yarn test"
},
"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)$",
"transformIgnorePatterns": [
"node_modules/(?!(react-native|lottie-react-native|expo|react-native-maps|react-native-svg|react-native-branch|native-base-shoutem-theme|react-native-easy-grid|react-native-drawer|react-native-vector-icons|react-native-keyboard-aware-scroll-view|react-navigation|native-base|@expo|react-native-scrollable-tab-view)/)"
]
},
"dependencies": {
"es6-promisify": "^6.0.0",
"expo": "^24.0.0",
"firebase": "^5.0.4",
"lodash": "4.17.4",
"mobx": "3.4.1",
"mobx-react": "4.3.5",
"mobx-react-devtools": "^5.0.1",
"moment": "^2.22.2",
"moment-timezone": "^0.5.17",
"native-base": "2.3.5",
"react": "16.2.0",
"react-moment": "^0.7.0",
"react-native": "0.51.0",
"react-native-vector-icons": "^4.6.0",
"react-navigation": "1.0.0-beta.21",
"recompose": "^0.27.1"
}
}