-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
78 lines (78 loc) · 2.33 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
76
77
78
{
"name": "hydropuzzle",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"log": "react-native log-ios | grep -v nw_connection_get_connected_socket_block_invoke",
"optimize-images": "node bin/optimize-images.js",
"script2txt": "babel-node bin/script2txt.js"
},
"dependencies": {
"color": "^1.0.3",
"expo": "^38.0.10",
"expo-keep-awake": "~8.2.1",
"install": "^0.10.1",
"js-yaml": "^3.10.0",
"lodash.memoize": "^4.1.2",
"npm": "^5.3.0",
"react": "16.13.1",
"react-native": "0.63.2",
"react-native-animatable": "^1.3.1",
"react-native-extended-stylesheet": "^0.12.0",
"react-native-iphone-x-helper": "^1.2.0",
"react-native-progress": "^4.1.2",
"react-native-store-review": "^0.1.5",
"react-native-typewriter": "^0.7.0",
"react-native-unimodules": "^0.10.1",
"react-native-video": "^5.0.0",
"react-timeout": "^1.2.0",
"shuffle-array": "^1.0.1"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.8.4",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^1.1.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^25.1.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-jsx": "^4.0.2",
"eslint-plugin-html": "^3.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"imagemagick": "^0.1.3",
"jest": "^25.1.0",
"jest-transform-stub": "^1.0.0",
"metro-react-native-babel-preset": "^0.59.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.3.0",
"react-native-mock": "github:RealOrangeOne/react-native-mock#master",
"react-test-renderer": "16.13.1",
"schedule": "0.4.0",
"standard": "^10.0.2"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"moduleNameMapper": {
"^.+\\.(jpg|png)$": "jest-transform-stub"
},
"verbose": true
},
"rnpm": {
"assets": [
"./assets/fonts"
]
}
}