-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 4.81 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "WorkoutApp",
"private": true,
"license": "MIT",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "yarn lint && jest --passWithNoTests",
"lint": "eslint src --ext .js,.ts,.tsx --no-ignore --max-warnings=0 && yarn ts:check",
"lint:fix": "prettier --write './**/*.{ts,tsx}' && eslint --fix src --ext .js,.ts,.tsx",
"pretty:list": "yarn prettier --list-different './**/*.{ts,tsx}'",
"deploy:soft": "code-push release-react cyrilb-bam.tech/WorkoutApp-iOS ios && code-push release-react cyrilb-bam.tech/WorkoutApp-android android",
"eslint:check": "eslint .",
"ts:check": "tsc",
"generate": "plop",
"lint-staged": "lint-staged",
"release-no-env:staging": "release-it --config '.release-it.staging.json'",
"release:staging": "dotenv yarn release-no-env:staging",
"release-no-env:prod": "release-it --config '.release-it.prod.json'",
"release:prod": "dotenv yarn release-no-env:prod",
"deploy": "scripts/deploy.sh",
"deploy:staging:hard:ios": "yarn deploy -e staging -t hard -o ios",
"deploy:staging:hard:android": "yarn deploy -e staging -t hard -o android",
"deploy:staging:soft": "yarn deploy -e staging -o android && yarn deploy ./scripts/deploy.sh -e dev -o ios",
"deploy:prod:hard": "yarn deploy -e prod -o ios -t hard && yarn deploy -e prod -o android -t hard",
"deploy:prod:soft": "yarn deploy -e prod -o ios -t soft && yarn deploy -e prod -o android -t soft"
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.7",
"@react-native-community/slider": "^2.0.9",
"@react-navigation/material-top-tabs": "^5.1.6",
"@react-navigation/native": "^5.1.3",
"@react-navigation/stack": "^5.2.8",
"@types/lodash": "^4.14.149",
"@types/react-native-snap-carousel": "^3.7.4",
"appcenter": "^3.0.0",
"appcenter-analytics": "^3.0.0",
"appcenter-crashes": "^3.0.0",
"babel-plugin-module-resolver": "4.0.0",
"date-fns": "^2.13.0",
"dotenv-cli": "3.1.0",
"i18next": "19.4.1",
"lint-staged": "10.1.2",
"lodash": "4.17.19",
"lottie-ios": "3.1.3",
"lottie-react-native": "3.3.2",
"mobx": "^5.15.4",
"mobx-devtools-mst": "0.9.21",
"mobx-react-lite": "^1.5.2",
"mobx-state-tree": "^3.15.0",
"mst-persist": "0.1.3",
"qs": "6.9.4",
"react": "16.9.0",
"react-i18next": "11.3.4",
"react-native": "0.61.2",
"react-native-animated-pagination-dot": "^0.1.5",
"react-native-calendars": "^1.265.0",
"react-native-code-push": "^6.1.0",
"react-native-device-info": "^5.5.7",
"react-native-draggable-flatlist": "2.2.0",
"react-native-gesture-handler": "^1.6.1",
"react-native-iphone-x-helper": "^1.2.1",
"react-native-linear-gradient": "^2.5.6",
"react-native-localize": "1.4.0",
"react-native-modal": "^11.5.6",
"react-native-paper": "^3.6.0",
"react-native-reanimated": "^1.7.1",
"react-native-redash": "^10.0.1",
"react-native-safe-area-context": "^0.7.3",
"react-native-screens": "^2.4.0",
"react-native-snap-carousel": "^3.8.4",
"react-native-splash-screen": "^3.2.0",
"react-native-svg": "^12.0.3",
"react-native-tab-view": "^2.13.0",
"react-native-vector-icons": "6.6.0",
"styled-components": "^4.4.0",
"uuid": "3.4.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@bam.tech/react-native-make": "^3.0.0",
"@react-native-community/eslint-config": "^0.0.5",
"@release-it/bumper": "1.4.1",
"@types/i18next": "13.0.0",
"@types/jest": "^24.0.18",
"@types/qs": "6.9.2",
"@types/react": "16.9.0",
"@types/react-i18next": "8.1.0",
"@types/react-native": "^0.60.17",
"@types/react-native-calendars": "^1.20.7",
"@types/react-native-vector-icons": "6.4.5",
"@types/react-test-renderer": "16.9.0",
"@types/styled-components": "^4.1.19",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.3.3",
"babel-jest": "^24.9.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"husky": "3.1.0",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"plop": "^2.5.2",
"prettier": "2.1.2",
"react-native-testing-library": "^1.11.1",
"react-test-renderer": "16.9.0",
"release-it": "13.6.8",
"typescript": "3.6.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"main": "index.js",
"repository": "[email protected]:woapp/WorkoutApp.git",
"author": "MattAgn <[email protected]>",
"version": "1.6.4"
}