This repository has been archived by the owner on Jan 25, 2025. It is now read-only.
forked from m-inan/react-native-music-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 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
{
"name": "musicapp",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"start": "react-native start",
"test": "jest"
},
"dependencies": {
"eslint-plugin-react-hooks": "^4.6.0",
"jetifier": "^2.0.0",
"react": "^18.2.0",
"react-redux": "9.0.4",
"redux-persist": "6.0.0",
"react-native": "^0.73.1",
"react-native-fast-image": "^8.6.3",
"react-native-gesture-handler": "^2.14.0",
"react-native-reanimated": "^3.6.1",
"react-native-safe-area-context": "^4.8.2",
"react-native-svg": "^14.1.0",
"react-native-swift": "^1.2.3",
"react-native-track-player": "^4.0.1",
"@react-native-async-storage/async-storage": "^1.21.0",
"@reduxjs/toolkit": "2.0.1"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/runtime": "^7.23.7",
"@babel/plugin-transform-template-literals": "7.23.3",
"@react-native-community/eslint-config": "^3.2.0",
"@react-native/metro-config": "^0.73.2",
"@types/jest": "^29.5.11",
"@types/react-native": "^0.73.0",
"@types/react-test-renderer": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "^0.77.0",
"react-test-renderer": "18.2.0",
"typescript": "5.3.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}