-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.67 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
{
"name": "filmiana",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "concurrently \"npm:web\" \"npm:server\"",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"server": "nodemon server/index.ts"
},
"dependencies": {
"@apollo/client": "^3.7.0",
"@react-navigation/native": "^6.0.11",
"@react-navigation/native-stack": "^6.7.0",
"@reduxjs/toolkit": "^1.8.5",
"@types/react-redux": "^7.1.24",
"@types/redux-saga": "^0.10.5",
"cors": "^2.8.5",
"expo": "~45.0.0",
"expo-status-bar": "~1.3.0",
"express": "^4.18.1",
"express-graphql": "^0.12.0",
"graphql": "^15.8.0",
"mongoose": "^6.6.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "0.68.2",
"react-native-web": "0.17.7",
"react-query": "^3.39.2",
"react-redux": "^8.0.2",
"redux-saga": "^1.2.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/react": "~17.0.21",
"@types/react-native": "~0.66.13",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-universe": "^11.1.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"typescript": "~4.3.5"
},
"private": true,
"eslintConfig": {
"extends": "universe/native",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
]
}
}