-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 974 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
32
33
34
35
{
"name": "expo-starter",
"version": "1.0.0",
"main": "./src/index.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"start": "expo start",
"start:wsl": "REACT_NATIVE_PACKAGER_HOSTNAME=$(netsh.exe interface ip show address 'Ethernet' | grep 'IP Address' | sed -r 's/^.*IP Address:\\W*//') expo start",
"test": "npm run test:lint && npm run test:types",
"test:lint": "eslint .",
"test:types": "tsc"
},
"dependencies": {
"expo": "50.0.17",
"expo-status-bar": "1.11.1",
"expo-system-ui": "2.9.4",
"react": "18.2.0",
"react-native": "0.73.7"
},
"devDependencies": {
"@babel/core": "7.24.4",
"@types/react": "18.2.79",
"@types/react-native": "0.73.0",
"@typescript-eslint/eslint-plugin": "7.7.0",
"eslint": "8.57.0",
"eslint-config-universe": "12.0.1",
"eslint-plugin-import": "2.29.1",
"prettier": "3.2.5",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"private": true
}