-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.43 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.43 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "personaplus",
"main": "expo-router/entry",
"version": "0.1.4",
"scripts": {
"start": "expo start --go",
"start:dev": "expo start",
"start:clear": "expo start --go --clear",
"start:dev:clear": "expo start --clear",
"test": "jest --verbose",
"lint": "eslint --fix .",
"prettify": "prettier --w .",
"upd": "expo install --fix",
"project:check": "expo-doctor",
"build": "eas build -p android --profile production",
"build:dev": "eas build -p android --profile development"
},
"jest": {
"preset": "jest-expo",
"setupFiles": [
"./jest.setup.js"
],
"extensionsToTreatAsEsm": [
".ts",
".tsx"
],
"testEnvironment": "node",
"globals": {
"ts-jest": {
"useESM": true
}
}
},
"type": "module",
"author": {
"name": "ZakaHaceCosas",
"url": "https://zakahacecosas.github.io/"
},
"contributors": [
{
"name": "Alvaro842DEV",
"url": "https://github.com/Alvaro842DEV/"
}
],
"bugs": {
"url": "https://github.com/GiveItAPlus/personaplus/issues"
},
"homepage": "https://github.com/GiveItAPlus/personaplus#readme",
"license": "GPL-3.0-only",
"description": "Give yourself a plus!",
"repository": "https://github.com/GiveItAPlus/personaplus",
"dependencies": {
"@expo/config": "^55.0.7",
"@expo/vector-icons": "^15.0.3",
"@react-native-picker/picker": "2.11.4",
"@react-navigation/native": "^7.1.8",
"dotenv": "^17.2.3",
"expo": "~55.0.5",
"expo-build-properties": "~55.0.9",
"expo-constants": "~55.0.7",
"expo-dev-client": "~55.0.16",
"expo-device": "~55.0.9",
"expo-doctor": "latest",
"expo-font": "~55.0.4",
"expo-linear-gradient": "~55.0.8",
"expo-linking": "~55.0.7",
"expo-localization": "~55.0.8",
"expo-location": "~55.1.2",
"expo-notifications": "~55.0.12",
"expo-router": "~55.0.5",
"expo-splash-screen": "~55.0.10",
"expo-sqlite": "~55.0.10",
"expo-status-bar": "~55.0.4",
"expo-system-ui": "~55.0.9",
"i18next": "^23.16.8",
"numeric-utils": "^2.1.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-i18next": "^15.7.4",
"react-native": "0.83.2",
"react-native-animated-stopwatch-timer": "^1.3.0",
"react-native-gesture-handler": "~2.30.0",
"react-native-reanimated": "4.2.1",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.23.0",
"react-native-svg": "15.15.3",
"react-native-timer-picker": "^2.4.0",
"react-native-worklets": "0.7.2",
"rn-countdown-timer": "^4.0.4",
"semver": "^7.7.3",
"strings-utils": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@jest/globals": "^30.2.0",
"@types/jest": "^29.5.14",
"@types/react": "~19.2.10",
"@types/react-test-renderer": "^18.3.1",
"@types/semver": "^7.7.1",
"ajv": "^8.17.1",
"eslint": "^8.57.1",
"eslint-config-expo": "~55.0.0",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-prettier": "^5.5.5",
"expect": "^30.2.0",
"jest": "^29.7.0",
"jest-expo": "~55.0.9",
"prettier": "^3.8.1",
"react-test-renderer": "18.2.0",
"typescript": "~5.9.3"
},
"private": true,
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"enabled": true,
"exclude": [
"expo-doctor",
"i18next",
"rn-countdown-timer"
]
}
}
},
"volta": {
"node": "22.22.0"
}
}