-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.16 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.16 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"lint": "eslint --fix --ext .tsx --ext .ts",
"start-dev": "ts-node-dev server/src/index.ts",
"start-prod": "ts-node server/src/index.ts",
"deploy": "pm2 deploy ecosystem.config.js production"
},
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@react-native-async-storage/async-storage": "^1.15.5",
"@react-native-community/datetimepicker": "^3.5.2",
"@react-native-community/slider": "^3.0.3",
"@react-navigation/bottom-tabs": "^5.11.11",
"@react-navigation/material-bottom-tabs": "^5.3.15",
"@react-navigation/material-top-tabs": "^5.3.15",
"@react-navigation/stack": "^5.14.5",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.12",
"@types/node": "^15.12.4",
"@types/passport": "^1.0.6",
"@types/react-native-svg-charts": "^5.0.9",
"@types/sequelize": "^4.28.9",
"@types/socket.io": "^3.0.2",
"@types/uuid": "^8.3.0",
"@unimodules/core": "^7.1.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"cron": "^1.8.2",
"date-fns": "^2.22.1",
"dotenv": "^10.0.0",
"expo": "~41.0.1",
"expo-facebook": "~11.0.5",
"expo-google-app-auth": "^8.1.7",
"expo-module-scripts": "^2.0.0",
"expo-status-bar": "~1.0.4",
"express": "^4.17.1",
"express-session": "^1.17.2",
"http": "*",
"husky": "^6.0.0",
"moment": "^2.29.1",
"mysql2": "^2.2.5",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"passport-local-sequelize": "^0.9.0",
"pm2": "^5.1.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-41.0.0.tar.gz",
"react-native-date-picker": "^3.3.2",
"react-native-elements": "^3.4.2",
"react-native-flash-message": "^0.1.23",
"react-native-get-random-values": "^1.7.0",
"react-native-modal": "^12.0.2",
"react-native-paper": "^4.9.2",
"react-native-progress": "^4.1.2",
"react-native-really-awesome-button": "^1.6.0",
"react-native-svg-charts": "^5.4.0",
"react-native-tab-view": "^2.16.0",
"react-native-vector-icons": "^8.1.0",
"react-native-web": "~0.13.12",
"redis": "^3.1.2",
"sequelize": "^6.6.2",
"shelljs": "^0.8.4",
"socket.io": "^4.1.2",
"socket.io-client": "^4.1.2",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@types/cron": "^1.7.2",
"@types/express-session": "^1.17.3",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"@types/redis": "^2.8.30",
"@types/shelljs": "^0.8.8",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.29.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"typescript": "~4.0.0"
},
"private": true,
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
}
}