-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.25 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "TemplateProject",
"version": "0.0.1",
"private": true,
"scripts": {
"bootstrap": "./scripts/bootstrap.sh",
"clean:all": "yarn clean:watchman && yarn clean:builds && yarn clean:cache && yarn clean:packages",
"clean:builds": "rm -rf ios/build android/build android/app/build",
"clean:cache": "rm -fr $TMPDIR/react-* $TMPDIR/haste-map-react-native-packager-* ~/.rncache",
"clean:packages": "rm -rf node_modules && yarn install",
"clean:watchman": "watchman watch-del-all",
"generate-apk": "cd android && ./gradlew assembleRelease",
"lint": "eslint ./ --ext .js",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest -u",
"test:ci": "jest --coverage --runInBand --detectOpenHandles",
"test:watch": "jest --watch"
},
"dependencies": {
"color": "3.1.0",
"lodash": "4.17.11",
"prop-types": "15.7.0",
"react": "16.6.3",
"react-native": "0.58.5",
"react-native-gesture-handler": "1.0.16",
"react-native-reanimated": "1.0.0-alpha.12",
"react-native-screens": "1.0.0-alpha.22",
"react-native-vector-icons": "6.3.0",
"react-navigation": "3.3.1"
},
"devDependencies": {
"@babel/core": "7.3.4",
"@babel/runtime": "7.3.4",
"babel-eslint": "10.0.1",
"babel-jest": "24.0.0",
"babel-plugin-lodash": "3.3.4",
"eslint": "5.14.1",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jest": "22.3.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-react-native": "3.6.0",
"eslint-plugin-sort-imports-es6-autofix": "0.4.0",
"husky": "1.3.1",
"jest": "24.0.0",
"lint-staged": "8.1.4",
"metro-react-native-babel-preset": "0.52.0",
"prettier": "1.16.4",
"react-test-renderer": "16.6.3"
},
"jest": {
"preset": "react-native",
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/jest/setup.js",
"<rootDir>/jest/__mocks__/react-native-gesture-handler.mock.js",
"<rootDir>/jest/__mocks__/react-native-reanimated.mock.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation)"
],
"testPathIgnorePatterns": [
"__e2e__",
"node_modules"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint",
"git add"
]
},
"greenkeeper": {
"commitMessages": {
"addConfigFile": ":paperclip: Add Greenkeeper config file",
"dependencyPin": ":bug: Pin ${dependency} to ${oldVersion}",
"dependencyUpdate": ":gem: Update ${dependency} to version ${version}",
"devDependencyPin": ":bug: Pin ${dependency} to ${oldVersion}",
"devDependencyUpdate": ":gem: Update ${dependency} to version ${version}",
"initialBadge": ":memo: Add Greenkeeper badge",
"initialBranches": ":tada: Whitelist greenkeeper branches",
"initialDependencies": ":gem: Upgrade: Update dependencies",
"lockfileUpdate": ":lock: Lockfile ${lockfilePath}",
"updateConfigFile": ":paperclip: Update Greenkeeper config file"
}
}
}