Skip to content

Commit 27c4c96

Browse files
committedMar 12, 2022
Renamed project to MTA
1 parent 1bc0932 commit 27c4c96

File tree

3 files changed

+69
-71
lines changed

3 files changed

+69
-71
lines changed
 

‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Minimalist Todo App
22

3-
<div><img src="https://raw.githubusercontent.com/rezbyte/TDM/assets/images/screenshot.jpg"></img></div>
3+
<div><img src="https://raw.githubusercontent.com/rezbyte/MTA/assets/images/screenshot.jpg"></img></div>
44

55
This is a todo list app written in [TypeScript](https://www.typescriptlang.org/) with [Expo](https://docs.expo.dev/) & [React Native](https://reactnative.dev/).
66

@@ -10,10 +10,10 @@ The app can be run quickly using the Metro bundler & Expo Go.
1010

1111
[Install the Expo CLI](https://docs.expo.dev/get-started/installation/) via your favorite package manager.
1212

13-
To start the application, open a terminal & navigate to the 'TDM' folder:
13+
To start the application, open a terminal & navigate to the 'MTA' folder:
1414

1515
```
16-
cd <path/to/TDM>
16+
cd <path/to/MTA>
1717
```
1818

1919
Then type the following into your terminal:

‎app.json

+27-29
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,30 @@
11
{
2-
"expo": {
3-
"name": "TDM",
4-
"slug": "TDM",
5-
"version": "1.0.0",
6-
"orientation": "portrait",
7-
"icon": "./assets/icon.png",
8-
"splash": {
9-
"image": "./assets/splash.png",
10-
"resizeMode": "contain",
11-
"backgroundColor": "#ffffff"
12-
},
13-
"updates": {
14-
"fallbackToCacheTimeout": 0
15-
},
16-
"assetBundlePatterns": [
17-
"**/*"
18-
],
19-
"ios": {
20-
"supportsTablet": true
21-
},
22-
"android": {
23-
"adaptiveIcon": {
24-
"foregroundImage": "./assets/adaptive-icon.png",
25-
"backgroundColor": "#FFFFFF"
26-
}
27-
},
28-
"web": {
29-
"favicon": "./assets/favicon.png"
2+
"expo": {
3+
"name": "MTA",
4+
"slug": "MTA",
5+
"version": "1.0.0",
6+
"orientation": "portrait",
7+
"icon": "./assets/icon.png",
8+
"splash": {
9+
"image": "./assets/splash.png",
10+
"resizeMode": "contain",
11+
"backgroundColor": "#ffffff"
12+
},
13+
"updates": {
14+
"fallbackToCacheTimeout": 0
15+
},
16+
"assetBundlePatterns": ["**/*"],
17+
"ios": {
18+
"supportsTablet": true
19+
},
20+
"android": {
21+
"adaptiveIcon": {
22+
"foregroundImage": "./assets/adaptive-icon.png",
23+
"backgroundColor": "#FFFFFF"
24+
}
25+
},
26+
"web": {
27+
"favicon": "./assets/favicon.png"
28+
}
3029
}
31-
}
3230
}

‎package.json

+39-39
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
11
{
2-
"name": "tdm",
3-
"version": "1.0.0",
4-
"main": "node_modules/expo/AppEntry.js",
5-
"scripts": {
6-
"start": "expo start",
7-
"android": "expo start --android",
8-
"ios": "expo start --ios",
9-
"web": "expo start --web",
10-
"eject": "expo eject",
11-
"lint": "yarn eslint ."
12-
},
13-
"dependencies": {
14-
"expo": "~44.0.0",
15-
"expo-status-bar": "~1.2.0",
16-
"react": "17.0.1",
17-
"react-dom": "17.0.1",
18-
"react-native": "0.64.3",
19-
"react-native-safe-area-context": "3.3.2",
20-
"react-native-web": "0.17.1"
21-
},
22-
"devDependencies": {
23-
"@babel/core": "^7.12.9",
24-
"@types/react": "~17.0.21",
25-
"@types/react-native": "~0.64.12",
26-
"@typescript-eslint/eslint-plugin": "^5.14.0",
27-
"@typescript-eslint/parser": "^5.14.0",
28-
"eslint": "^8.11.0",
29-
"eslint-config-airbnb": "^19.0.4",
30-
"eslint-config-airbnb-typescript": "^16.1.1",
31-
"eslint-config-prettier": "^8.5.0",
32-
"eslint-plugin-import": "^2.25.4",
33-
"eslint-plugin-jsx-a11y": "^6.5.1",
34-
"eslint-plugin-react": "^7.29.3",
35-
"eslint-plugin-react-hooks": "^4.3.0",
36-
"eslint-plugin-react-native": "^4.0.0",
37-
"prettier": "^2.5.1",
38-
"typescript": "~4.3.5"
39-
},
40-
"private": true
2+
"name": "mta",
3+
"version": "1.0.0",
4+
"main": "node_modules/expo/AppEntry.js",
5+
"scripts": {
6+
"start": "expo start",
7+
"android": "expo start --android",
8+
"ios": "expo start --ios",
9+
"web": "expo start --web",
10+
"eject": "expo eject",
11+
"lint": "yarn eslint ."
12+
},
13+
"dependencies": {
14+
"expo": "~44.0.0",
15+
"expo-status-bar": "~1.2.0",
16+
"react": "17.0.1",
17+
"react-dom": "17.0.1",
18+
"react-native": "0.64.3",
19+
"react-native-safe-area-context": "3.3.2",
20+
"react-native-web": "0.17.1"
21+
},
22+
"devDependencies": {
23+
"@babel/core": "^7.12.9",
24+
"@types/react": "~17.0.21",
25+
"@types/react-native": "~0.64.12",
26+
"@typescript-eslint/eslint-plugin": "^5.14.0",
27+
"@typescript-eslint/parser": "^5.14.0",
28+
"eslint": "^8.11.0",
29+
"eslint-config-airbnb": "^19.0.4",
30+
"eslint-config-airbnb-typescript": "^16.1.1",
31+
"eslint-config-prettier": "^8.5.0",
32+
"eslint-plugin-import": "^2.25.4",
33+
"eslint-plugin-jsx-a11y": "^6.5.1",
34+
"eslint-plugin-react": "^7.29.3",
35+
"eslint-plugin-react-hooks": "^4.3.0",
36+
"eslint-plugin-react-native": "^4.0.0",
37+
"prettier": "^2.5.1",
38+
"typescript": "~4.3.5"
39+
},
40+
"private": true
4141
}

0 commit comments

Comments
 (0)
Please sign in to comment.