-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.86 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "dead-yet",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests",
"test:coverage": "jest --coverage --passWithNoTests",
"lint": "eslint . --ext .ts,.tsx --ignore-pattern dist --ignore-pattern node_modules",
"lint:fix": "eslint . --ext .ts,.tsx --ignore-pattern dist --ignore-pattern node_modules --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"*.{ts,tsx,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\" \"*.{ts,tsx,js,json}\"",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^3.0.2",
"@react-navigation/native": "^7.2.2",
"@react-navigation/native-stack": "^7.14.11",
"aes-js": "^3.1.2",
"expo": "~54.0.33",
"expo-crypto": "~13.0.2",
"expo-notifications": "~0.32.16",
"expo-status-bar": "~3.0.9",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-safe-area-context": "^5.7.0",
"react-native-screens": "^4.24.0",
"react-native-web": "^0.21.0",
"uuid": "^14.0.0"
},
"devDependencies": {
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.5.3",
"@types/aes-js": "^3.1.4",
"@types/jest": "^29.5.14",
"@types/react": "~19.1.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.7.0",
"jest-expo": "~54.0.0",
"prettier": "^3.3.3",
"react-test-renderer": "19.1.0",
"typescript": "~5.9.2"
},
"private": true
}