-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.22 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
74
75
{
"name": "canary-mobile",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"android": "react-native run-android",
"test": "jest ",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@react-native-community/async-storage": "^1.6.1",
"react": "16.8.3",
"react-native": "0.59.10",
"react-native-gesture-handler": "^1.1.0",
"react-native-get-music-files": "Drazail/react-native-get-music-files",
"react-native-linear-gradient": "^2.5.6",
"react-native-slider": "^0.11.0",
"react-native-svg": "^9.5.3",
"react-native-svg-transformer": "^0.13.0",
"react-native-swift": "^1.2.2",
"react-native-track-player": "^1.1.8",
"react-navigation": "^3.8.1",
"react-redux": "^7.0.2",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"redux-saga": "^1.0.2",
"tslint": "^5.20.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/runtime": "^7.4.3",
"@types/react": "^16.9.2",
"@types/react-native": "^0.60.15",
"@types/react-redux": "^7.1.2",
"@types/redux-persist": "^4.3.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babel-preset-react-native": "^4.0.1",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-native": "^3.6.0",
"jest": "^24.7.1",
"metro-react-native-babel-preset": "^0.53.1",
"node-sass": "^4.12.0",
"prettier-eslint": "^8.8.2",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "16.8.3",
"redux-devtools-extension": "^2.13.8",
"ts-jest": "^24.1.0",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.6.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"cacheDirectory": ".jest/cache"
},
"isSwift": true
}