-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.14 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.14 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
{
"name": "taskflow",
"version": "1.1.0",
"description": "Cross-platform (Web / Android / iOS) task manager built on React Native + Expo. TypeScript, Zustand, AsyncStorage.",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"build:web": "expo export --platform web --output-dir dist",
"typecheck": "tsc --noEmit",
"lint": "eslint ."
},
"keywords": [
"react-native",
"expo",
"typescript",
"task-management",
"todo",
"productivity",
"cross-platform",
"ios",
"android",
"web",
"pomodoro",
"kanban",
"gantt",
"focus-mode",
"white-noise",
"ai-suggestions",
"mentions",
"drag-and-drop",
"zustand",
"material-icons"
],
"author": {
"name": "badhope",
"url": "https://github.com/badhope"
},
"license": "MIT",
"homepage": "https://github.com/badhope/TaskFlow#readme",
"repository": {
"type": "git",
"url": "https://github.com/badhope/TaskFlow.git"
},
"bugs": {
"url": "https://github.com/badhope/TaskFlow/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@expo/metro-runtime": "~56.0.14",
"@react-native-async-storage/async-storage": "3.1.1",
"@react-native-community/datetimepicker": "9.1.0",
"@react-navigation/bottom-tabs": "^7.17.2",
"@react-navigation/native": "^7.3.0",
"@react-navigation/native-stack": "^7.17.2",
"expo": "~56.0.9",
"expo-status-bar": "~56.0.4",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-native": "0.86.0",
"react-native-safe-area-context": "5.8.0",
"react-native-screens": "~4.25.2",
"react-native-vector-icons": "^10.0.3",
"react-native-web": "~0.21.2",
"zustand": "^5.0.14"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@eslint/js": "^9.39.4",
"@types/react": "~19.2.17",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^15.15.0",
"typescript": "^5.1.3",
"typescript-eslint": "^8.60.1"
},
"private": true
}