-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.27 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.27 KB
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
79
80
{
"name": "headlines-react",
"description": "it's spelled can-e-she-tah",
"version": "2.0.6",
"private": true,
"bugs": {
"url": "https://github.com/Canillitapp/headlines-react/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Canillitapp/headlines-react.git"
},
"author": {
"name": "Alex Ruzzarin",
"url": "https://github.com/alexruzzarin/"
},
"contributors": [
{
"name": "Max",
"url": "https://github.com/Draska/"
}
],
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"android": "react-native run-android",
"test": "jest",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint .",
"lint:css": "stylelint './components/**/*.js'",
"postversion": "react-native-version --target android"
},
"dependencies": {
"@cerebral/forms": "3.2.2",
"@cerebral/http": "4.2.3",
"@cerebral/react": "3.2.2",
"cerebral": "4.2.2",
"i18n-js": "^3.0.11",
"moment": "2.22.2",
"react": "16.5.0",
"react-native": "0.57.2",
"react-native-languages": "^3.0.0",
"react-native-vector-icons": "6.0.1",
"react-navigation": "2.17.0",
"styled-components": "3.4.9"
},
"devDependencies": {
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"eslint": "5.6.1",
"eslint-config-google": "0.10.0",
"eslint-config-prettier": "3.1.0",
"eslint-plugin-babel": "5.2.1",
"eslint-plugin-prettier": "3.0.0",
"eslint-plugin-react": "7.11.1",
"eslint-plugin-react-native": "3.3.0",
"greenkeeper-lockfile": "1.15.1",
"jest": "23.6.0",
"metro-react-native-babel-preset": "0.48.0",
"prettier": "1.14.3",
"react-native-version": "2.6.5",
"react-test-renderer": "16.5.2",
"stylelint": "9.6.0",
"stylelint-config-standard": "18.2.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.5.0"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation|react-native-vector-icons)"
],
"setupFiles": [
"./__mocks__/RNI18n.js",
"./__mocks__/XHR.js"
]
}
}