-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.15 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
{
"name": "makeAmark",
"version": "0.0.1",
"private": true,
"scripts": {
"rn": "node node_modules/react-native/local-cli/cli.js",
"start": "yarn rn start",
"ios": "yarn rn run-ios",
"android": "yarn rn run-android",
"clear-rn-cache": "watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf $TMPDIR/metro* && rm -rf $TMPDIR/haste-*",
"lint": "eslint",
"format": "prettier --write 'src/**/*.{js,jsx}'",
"format:check": "prettier -c 'src/**/*.{js,jsx}'",
"test": "jest",
"test:watch": "yarn test --watch",
"coverage": "yarn run test --coverage",
"storybook": "watch rnstl ./src --wait=100 | storybook start | yarn start --projectRoot storybook --watchFolders $PWD"
},
"config": {
"react-native-storybook-loader": {
"searchDir": [
"./src"
],
"pattern": "**/*.stories.js",
"outputFile": "./storybook/storyLoader.js"
}
},
"dependencies": {
"@mapbox/mapbox-sdk": "^0.6.0",
"@mapbox/react-native-mapbox-gl": "https://github.com/nitaliano/react-native-mapbox-gl.git#bc5f589d3782a7d3ed7d78c9050b2fd12ea6c77a",
"lodash.debounce": "^4.0.8",
"react": "^16.8.6",
"react-native": "0.59.4",
"react-native-config": "^0.11.7",
"react-native-snackbar": "^0.5.5",
"react-native-snap-carousel": "^3.7.5",
"react-native-vector-icons": "^6.4.2"
},
"devDependencies": {
"@storybook/addon-actions": "^4.1.16",
"@storybook/addon-links": "^4.1.16",
"@storybook/addons": "^4.1.16",
"@storybook/react-native": "^4.1.16",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-runtime": "^6.26.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-native": "^3.6.0",
"jest": "^24.7.1",
"prettier": "^1.17.0",
"prop-types": "^15.7.2",
"react-dom": "^16.8.6",
"react-native-storybook-loader": "^1.8.0",
"react-native-testing-library": "^1.7.0",
"react-test-renderer": "^16.8.6"
},
"jest": {
"preset": "react-native"
}
}