-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.28 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
{
"name": "resonate-mobile",
"version": "1.0.0",
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"expo:prebuild": "expo prebuild",
"eslint:check": "eslint . --ext .jsx,.js,.ts,.tsx",
"prettier:check": "prettier --check '**/*.{js,ts,jsx,tsx}'",
"eslint:fix": "eslint --fix . --ext .jsx,.js,.ts,.tsx",
"prettier:fix": "prettier --write '**/*.{js,ts,jsx,tsx}'",
"lint": "npm run eslint:check && npm run prettier:check",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"ios": "expo run:ios",
"web": "expo start --web",
"eject": "expo eject",
"prepare": "husky install",
"test:watch": "jest --watch --coverage=false --changedSince=origin/main",
"test": "jest"
},
"dependencies": {
"@react-native-community/slider": "4.2.3",
"@react-navigation/material-bottom-tabs": "^6.2.4",
"@react-navigation/native": "^6.0.13",
"@tanstack/react-query": "^4.13.5",
"dotenv": "^16.0.3",
"expo": "~46.0.17",
"expo-av": "~12.0.4",
"expo-community-flipper": "^46.0.2",
"expo-dev-client": "~1.3.1",
"expo-splash-screen": "~0.16.2",
"expo-status-bar": "~1.4.0",
"expo-system-ui": "~1.3.0",
"jest": "^26.6.3",
"jest-expo": "^47.0.1",
"lodash": "^4.17.21",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.6",
"react-native-flipper": "^0.173.0",
"react-native-paper": "5.0.0-rc.10",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-web": "~0.18.7"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@expo/cli": "^0.4.8",
"@jest/types": "^29.3.1",
"@testing-library/jest-native": "^5.2.0",
"@testing-library/react-native": "^11.4.0",
"@types/jest": "^29.2.2",
"@types/lodash": "^4.14.184",
"@types/react-dom": "^18.0.8",
"@types/react-native": "^0.70.6",
"eslint": "^8.26.0",
"eslint-config-universe": "^11.1.0",
"husky": ">=7",
"lint-staged": ">=10",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.6.3"
},
"private": true,
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}