-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.09 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
{
"name": "sportly-app",
"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",
"dev:web": "EXPO_DEBUG=true expo start --web",
"dev:server": "ts-node-dev --respawn --transpile-only backend/server.ts",
"test": "jest",
"test:watch": "jest --watch",
"db:seed": "ts-node prisma/seed.ts",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:seed": "ts-node prisma/seed.ts",
"seed": "ts-node prisma/seed.ts",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@expo/metro-runtime": "~3.1.3",
"@expo/webpack-config": "^19.0.1",
"@react-native-community/blur": "^4.4.1",
"@react-native-masked-view/masked-view": "0.3.0",
"@react-navigation/bottom-tabs": "^6.5.12",
"@react-navigation/native": "^6.1.10",
"@react-navigation/native-stack": "^6.9.18",
"@react-navigation/stack": "^6.3.21",
"@reduxjs/toolkit": "^2.2.1",
"@types/cors": "^2.8.17",
"@types/date-fns": "^2.5.3",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.9",
"@types/uuid": "^10.0.0",
"axios": "^1.6.7",
"concurrently": "^9.1.2",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"expo": "~50.0.7",
"expo-linear-gradient": "~12.7.2",
"expo-status-bar": "~1.11.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.73.6",
"react-native-gesture-handler": "~2.14.0",
"react-native-modal": "^14.0.0-rc.1",
"react-native-reanimated": "~3.6.2",
"react-native-safe-area-context": "4.8.2",
"react-native-screens": "~3.29.0",
"react-native-web": "~0.19.6",
"react-redux": "^9.1.0",
"redis": "^4.7.0",
"ts-node-dev": "^2.0.0",
"uuid": "^11.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/preset-env": "^7.20.0",
"@babel/preset-react": "^7.20.0",
"@babel/preset-typescript": "^7.20.0",
"@faker-js/faker": "^8.4.1",
"@prisma/client": "^5.22.0",
"@testing-library/jest-native": "^5.4.2",
"@testing-library/react-native": "^12.4.3",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^29.5.12",
"@types/react": "~18.2.45",
"@types/react-native": "^0.72.8",
"@types/react-navigation": "^3.0.8",
"@types/react-redux": "^7.1.34",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-react-native-web": "^0.20.0",
"bcryptjs": "^3.0.2",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"jest-expo": "~50.0.2",
"metro-minify-terser": "^0.80.1",
"pg": "^8.14.1",
"prisma": "^5.22.0",
"ts-node": "^10.9.2",
"typescript": "^5.1.3"
},
"private": true,
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}