-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.82 KB
/
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
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
{
"name": "TableJet",
"version": "1.2.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint .",
"start": "react-native start",
"test": "jest",
"build:web": "webpack --mode=production --config ./web/webpack.config.js && zip -r dist.zip dist",
"dev:web": "webpack-dev-server --config ./web/webpack.config.js --mode=development --no-hot",
"build:android": "npx react-native build-android --mode=release",
"build:ios": "npx react-native build-ios --configuration Release"
},
"dependencies": {
"@apollo/client": "^3",
"@babel/preset-typescript": "^7",
"@gorhom/bottom-sheet": "^4",
"@notifee/react-native": "^7",
"@react-native-async-storage/async-storage": "^1",
"@react-native-firebase/app": "^12",
"@react-native-firebase/messaging": "^12",
"@react-native-google-signin/google-signin": "^11.0.1",
"@react-native/metro-config": "^0.73",
"@react-navigation/native": "^6",
"@react-navigation/native-stack": "^6",
"@types/react-native-dotenv": "^0.2",
"babel-plugin-module-resolver": "^5",
"fuse.js": "^6",
"graphql": "^16",
"nativewind": "^2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "^0.73",
"react-native-gesture-handler": "^2",
"react-native-gradle-plugin": "^0",
"react-native-haptic-feedback": "^1",
"react-native-linear-gradient": "^2",
"react-native-reanimated": "^3",
"react-native-safe-area-context": "^4",
"react-native-screens": "^3",
"react-native-vector-icons": "^9",
"react-native-web": "^0.19",
"react-native-web-linear-gradient": "^1",
"react-scripts": "^5",
"ts-loader": "^9"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/plugin-syntax-jsx": "^7",
"@babel/preset-env": "^7",
"@babel/preset-react": "^7",
"@babel/runtime": "^7",
"@react-native-community/eslint-config": "^3",
"@tsconfig/react-native": "^2",
"@types/jest": "^29",
"@types/node": "^18",
"@types/react": "^18",
"@types/react-native-vector-icons": "^6",
"@types/react-test-renderer": "~18",
"babel-jest": "^29",
"babel-loader": "^9",
"babel-plugin-react-native-web": "^0.19",
"copy-webpack-plugin": "^12",
"eslint": "^8",
"html-inline-script-webpack-plugin": "^3",
"jest": "^29",
"metro-react-native-babel-preset": "0.73",
"prettier": "^2",
"react-native-asset": "^2",
"react-native-dotenv": "^3",
"react-test-renderer": "18.2.0",
"tailwindcss": "3.3.2",
"typescript": "5",
"url-loader": "^4",
"webpack": "^5",
"webpack-cli": "^5",
"webpack-dev-server": "^4"
},
"overrides": {
"react-scripts": {
"typescript": "^5"
}
},
"jest": {
"preset": "react-native"
},
"browserslist": "> 0.25%, not dead"
}