-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.41 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.41 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
{
"name": "rockzcReactnative",
"version": "0.0.1",
"private": true,
"scripts": {
"start1": "node node_modules/react-native/local-cli/cli.js start",
"start": "react-native run-ios",
"copy": "rm -rf ./lib/static & cp -r src/static ./lib ",
"test": "jest",
"iosbundle": "react-native bundle --entry-file index.js --bundle-output ./ios/index.ios.jsbundle --platform ios --assets-dest ./ios/bundle --dev false",
"androidbundle": "react-native bundle --entry-file index.js --bundle-output ./android/app/src/main/assets/index.android.jsbundle --platform android --assets-dest ./android/app/src/main/res/ --dev false"
},
"dependencies": {
"@babel/core": "^7.0.0-beta.42",
"@types/react-navigation": "^1.5.2",
"@types/react-redux": "^5.0.15",
"@types/redux-actions": "^2.2.4",
"@types/redux-logger": "^3.0.5",
"react": "^16.3.0-alpha.1",
"react-native": "0.54.2",
"react-native-linear-gradient": "^2.4.0",
"react-native-splash-screen": "^3.0.6",
"react-native-swiper": "^1.5.13",
"react-native-typescript-transformer": "^1.2.4",
"react-navigation": "^1.5.9",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-actions": "^2.3.0",
"redux-logger": "^3.0.6"
},
"devDependencies": {
"@types/enzyme": "^3.1.9",
"@types/jest": "^22.2.2",
"@types/react": "^16.0.41",
"@types/react-native": "^0.52.19",
"@types/react-test-renderer": "^16.0.1",
"babel-eslint": "^6.1.2",
"babel-jest": "22.4.3",
"babel-preset-react-native": "4.0.0",
"enzyme": "^3.3.0",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.2",
"jest": "22.4.3",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.3.0-alpha.1",
"ts-jest": "^22.4.2",
"typescript": "^2.7.2"
},
"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/",
"<rootDir>/lib/"
],
"cacheDirectory": ".jest/cache"
},
"types": [
"react",
"react-native"
]
}