-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 893 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
36
37
{
"name": "bedone",
"version": "1.0.0",
"main": "./src/index.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"start": "expo start",
"test": "npm run test:lint && npm run test:types",
"test:lint": "eslint .",
"test:types": "tsc"
},
"dependencies": {
"@expo/vector-icons": "13.0.0",
"@react-navigation/native": "6.1.7",
"@react-navigation/native-stack": "6.9.13",
"expo": "49.0.7",
"expo-status-bar": "1.6.0",
"expo-system-ui": "2.4.0",
"expo-updates": "0.18.11",
"nanoid": "4.0.2",
"react": "18.2.0",
"react-native": "0.72.3"
},
"devDependencies": {
"@babel/core": "7.22.10",
"@types/react": "18.2.20",
"@types/react-native": "0.72.2",
"eslint": "8.47.0",
"eslint-config-universe": "12.0.0",
"prettier": "3.0.2",
"ts-node": "10.9.1",
"typescript": "5.1.6"
},
"private": true
}