-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.16 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
{
"name": "testProject",
"version": "0.0.1",
"private": true,
"scripts": {
"precommit": "npm run localize && lint-staged && npm run lint && npm run flow && npm test",
"localize": "node ./localizeLanguage.js; git add ./src/locales/strings",
"flow": "flow",
"format": "import-sort -l --write '*.js' 'src/**/*.js'; prettier-eslint --write '*.js' 'src/**/*.js'",
"lint": "eslint 'src/*/*.js' 'src/*/src/**/*.js'",
"test": "jest"
},
"dependencies": {
"appcenter": "^1.5.1",
"appcenter-analytics": "^1.5.1",
"appcenter-crashes": "^1.5.1",
"json-format": "^1.0.1",
"react": "16.2.0",
"react-native": "0.53.3",
"react-native-router-flux": "4.0.5",
"react-native-vector-icons": "^4.4.2",
"react-redux": "~4.4.5",
"redux": "~3.5.2",
"redux-thunk": "~2.1.0",
"rfc4648": "1.1.0",
"sprintf-js": "^1.1.1"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-jest": "22.4.1",
"eslint": "^4.18.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-react-native": "^3.0.1",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.62.0",
"husky": "^0.14.3",
"import-sort-cli": "^5.0.0",
"import-sort-parser-babylon": "^5.0.0",
"import-sort-style-module": "^5.0.0",
"jest": "22.4.2",
"react-test-renderer": "16.2.0",
"lint-staged": "^6.1.1",
"prettier-eslint-cli": "^4.7.1"
},
"lint-staged": {
"*.js": [
"import-sort -l --write",
"prettier-eslint --write",
"git add"
]
},
"importSort": {
".js, .es": {
"parser": "babylon",
"style": "module"
}
},
"prettier": {
"printWidth": 160
},
"workspaces": [
"packages/*"
],
"jest": {
"preset": "react-native",
"setupFiles": [
"<rootDir>/node_modules/appcenter/test/AppCenterMock.js",
"<rootDir>/node_modules/appcenter-crashes/test/AppCenterCrashesMock.js",
"<rootDir>/node_modules/appcenter-analytics/test/AppCenterAnalyticsMock.js"
]
}
}