-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.59 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.59 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
98
99
100
101
102
103
104
105
106
{
"name": "SuperStarter",
"version": "0.0.1",
"private": true,
"dependencies": {
"@emotion/core": "^10.0.22",
"@emotion/css": "^10.0.22",
"@emotion/native": "^10.0.14",
"@emotion/styled": "^10.0.23",
"@emotion/styled-base": "^10.0.24",
"@react-native-community/async-storage": "^1.6.2",
"emotion-theming": "^10.0.14",
"moment": "^2.24.0",
"react": "16.13.1",
"react-native": "0.63.0-rc.0",
"react-native-config": "^0.12.0",
"react-native-gesture-handler": "^1.5.2",
"react-native-iphone-x-helper": "^1.2.1",
"react-native-reanimated": "^1.4.0",
"react-native-splash-screen": "^3.2.0",
"react-native-svg": "^9.13.3",
"react-navigation": "^4.0.0",
"react-navigation-hooks": "^1.0.3",
"react-navigation-stack": "^1.5.3",
"react-navigation-tabs": "^2.6.2",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-persist": "^6.0.0",
"redux-promise-middleware": "^6.1.1",
"redux-promise-middleware-actions": "^3.0.1",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^1.0.0",
"@types/jest": "^24.0.18",
"@types/react-native": "^0.60.22",
"@types/react-redux": "^7.1.5",
"@types/react-test-renderer": "16.9.0",
"@types/redux-actions": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"babel-jest": "^25.1.0",
"babel-plugin-module-resolver": "^3.2.0",
"domakey": "^0.0.6",
"eslint": "^6.2.1",
"eslint-config-airbnb-typescript": "^4.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"husky": "^3.1.0",
"jest": "^25.1.0",
"lint-staged": "^10.0.0-beta.7",
"metro-react-native-babel-preset": "^0.59.0",
"react-test-renderer": "16.13.1",
"react-native-typescript-transformer": "^1.2.13",
"redux-devtools-extension": "^2.13.8",
"typescript": "^3.7.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"rnpm": {
"assets": [
"./assets/fonts"
]
},
"scripts": {
"compile": "tsc",
"create": "domakey",
"start": "react-native start",
"test": "jest",
"lint": "eslint --fix './src/**/*.{ts,tsx}' && echo 'lint completed successfully'",
"ios": "react-native run-ios",
"ios:staging": "react-native run-ios --scheme staging",
"ios:production": "react-native run-ios --scheme production",
"ios:release:local": "react-native run-ios --configuration Release",
"ios:release:staging": "react-native run-ios --scheme staging --configuration Release",
"ios:release:production": "react-native run-ios --scheme production --configuration Release",
"android:staging": "ENVFILE=.env.staging react-native run-android",
"android:production": "ENVFILE=.env.production react-native run-android",
"android:release:local": "cd android && ENVFILE=.env ./gradlew assembleRelease && cd ..",
"android:release:staging": "cd android && ENVFILE=.env.staging ./gradlew assembleRelease && cd ..",
"android:release:production": "cd android && ENVFILE=.env.production ./gradlew assembleRelease && cd ..",
"android:bundle": "cd android && ENVFILE=.env.production ./gradlew bundleRelease && cd ..",
"android:clean": "cd android && ./gradlew clean && cd .."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "npm run lint"
}
}