-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.06 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
{
"name": "update-demo",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test": "jest --watchAll",
"test-ci": "jest --ci",
"test-update": "jest --updateSnapshot --coverage=false",
"lint": "eslint --color --ext .js,.jsx App.js",
"lint-fix": "npm run lint -- --fix",
"lint-quiet": "npm run lint -- --quiet",
"format": "prettier App.js",
"format-write": "npm run format -- --write",
"format-check": "npm run format -- --check",
"clean-node": "rimraf node_modules"
},
"dependencies": {
"expo": "^51.0.2",
"expo-status-bar": "~1.12.1",
"expo-updates": "~0.25.11",
"react": "18.2.0",
"react-native": "0.74.1"
},
"devDependencies": {
"@babel/core": "^7.24",
"@react-native-community/eslint-config": "^3.2.0",
"babel-preset-expo": "~11.0",
"eslint": "^8.57",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2"
},
"private": true
}