-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 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
{
"name": "stackathon-tinder-clone",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "JWT=shh expo start --dev-client",
"seed": "node script/seed.js",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web"
},
"prettier": {
"singleQuote": false,
"bracketSpacing": true,
"semi": false
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.15.0",
"@react-navigation/native": "^6.0.10",
"@react-navigation/native-stack": "^6.6.2",
"@reduxjs/toolkit": "^1.8.1",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"expo": "~44.0.2",
"expo-splash-screen": "~0.14.1",
"expo-status-bar": "~1.2.0",
"express": "^4.18.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"prettier": "^2.6.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-native": "0.64.3",
"react-native-safe-area-context": "3.3.2",
"react-native-screens": "~3.10.1",
"react-native-web": "0.17.1",
"react-redux": "^8.0.1",
"react-router-dom": "^6.3.0",
"redux": "^4.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.4",
"sequelize": "^6.19.0"
},
"devDependencies": {
"@babel/core": "^7.12.9"
},
"private": true
}