-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
31 lines (31 loc) · 960 Bytes
/
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
{
"name": "ReactNativeTypescriptStylesExample",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"tsc": "tsc --noEmit",
"prettier": "prettier \"src/**/*.+(js|jsx|ts|tsx|json)\"",
"format": "yarn prettier --write",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"validate": "yarn prettier --list-different && yarn tsc && yarn lint"
},
"dependencies": {
"react": "17.0.1",
"react-native": "0.64.0",
"react-native-static-safe-area-insets": "^2.1.1",
"react-native-typography": "^1.4.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^1.1.0",
"@types/react-native": "^0.63.2",
"babel-jest": "^25.1.0",
"eslint": "^6.5.1",
"metro-react-native-babel-preset": "^0.59.0",
"typescript": "^3.8.3"
}
}