-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.49 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.49 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
{
"name": "ReactNativeStarter",
"version": "1.0.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": "7.2.3",
"babel-jest": "20.0.3",
"babel-preset-react-native": "3.0.1",
"concurrently": "^3.5.0",
"eslint": "4.18.2",
"husky": "0.14.3",
"jest": "20.0.4",
"jest-expo": "20.0.0",
"react-native-scripts": "1.3.1",
"react-test-renderer": "16.0.0-alpha.12",
"rimraf": "^2.6.1",
"ts-jest": "^21.0.1",
"tslint": "^5.6.0",
"typescript": "^2.4.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",
"test": "jest && tslint src/**/*.ts && eslint .",
"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",
"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": {
"color": "^2.0.1",
"expo": "21.0.0",
"lodash": "4.17.19",
"moment": "2.13.0",
"native-base": "2.3.2",
"react": "16.0.0-alpha.12",
"react-native": "0.47.2",
"react-navigation": "1.0.0-beta.11",
"react-redux": "5.0.5",
"redux": "3.7.2",
"redux-form": "7.0.3",
"redux-persist": "4.8.3",
"redux-thunk": "2.2.0",
"remote-redux-devtools": "0.5.0",
"remote-redux-devtools-on-debugger": "^0.8.0"
}
}