-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.12 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
{
"name": "circles",
"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",
"eject": "expo eject",
"lint": "eslint \"**/*.{vue,ts,js,tsx,jsx}\" --fix",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts,tsx,vue,md}": [
"eslint --fix"
]
},
"dependencies": {
"@expo-google-fonts/rubik": "^0.2.2",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/native": "^6.0.8",
"@react-navigation/stack": "^6.1.1",
"@reduxjs/toolkit": "^1.8.0",
"@shopify/react-native-skia": "0.1.157",
"@types/color-convert": "^2.0.0",
"@types/luxon": "^2.3.0",
"color-convert": "^2.0.1",
"expo": "^47.0.0",
"expo-blur": "~12.0.1",
"expo-haptics": "~12.0.1",
"expo-linear-gradient": "~12.0.1",
"expo-sqlite": "~11.0.0",
"expo-status-bar": "~1.4.2",
"expo-updates": "~0.15.6",
"luxon": "^2.3.1",
"module-resolver": "^1.0.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.5",
"react-native-gesture-handler": "~2.8.0",
"react-native-get-random-values": "~1.8.0",
"react-native-reanimated": "~2.14.0",
"react-native-redash": "^18.1.0",
"react-native-safe-area-context": "4.4.1",
"react-native-shared-element": "0.8.4",
"react-native-svg": "13.4.0",
"react-native-web": "~0.18.7",
"react-navigation-shared-element": "^3.1.3",
"react-redux": "^7.2.6",
"redux-thunk": "^2.4.1",
"typeorm": "0.2.34"
},
"devDependencies": {
"@antfu/eslint-config": "^0.18.3",
"@babel/core": "^7.19.3",
"@types/react": "~18.0.24",
"@types/react-native": "~0.70.6",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^8.10.0",
"husky": "^7.0.4",
"typescript": "^4.6.3"
},
"private": true
}