This repository has been archived by the owner on Mar 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
125 lines (125 loc) · 4.03 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@kiwicom/universal-components",
"version": "0.0.14",
"description": "Component Library for React Native, Expo and React applications",
"homepage": "https://github.com/kiwicom/universal-components",
"main": "lib/web/index.js",
"react-native": "lib/native/index.js",
"scripts": {
"docz:dev": "cd docs; yarn; yarn docz:dev",
"docz:build": "cd docs; yarn; yarn docz:build",
"native": "node node_modules/react-native/local-cli/cli.js start",
"storybook": "start-storybook -p 9009 -c .storybook -s ./fonts",
"storybook:build": "rimraf storybook-static; build-storybook -c .storybook -s ./fonts",
"prestorybook-native": "node ./node_modules/.bin/rnstl",
"storybook-native": "storybook -c storybook.native start -p 7007",
"test": "node node_modules/jest/bin/jest.js --config=.jest.json",
"lint": "eslint src index.js --report-unused-disable-directives",
"flow": "flow --include-warnings",
"test-ci": "yarn lint && yarn flow && yarn test --maxWorkers=2",
"rnstl": "rnstl",
"ios": "rnstl && react-native run-ios",
"android": "rnstl && react-native run-android",
"build": "yarn && cd scripts && yarn",
"release": "release-it",
"loki:test:chrome": "yarn loki test --configurationFilter chrome.laptop --port 9009",
"loki:approve:chrome": "yarn loki approve --configurationFilter chrome.laptop --port 9009",
"loki:test:iphone": "yarn loki test --configurationFilter iphoneX --port 7007",
"loki:approve:iphone": "yarn loki approve --configurationFilter iphoneX --port 7007"
},
"files": [
"lib"
],
"keywords": [
"react",
"native",
"react-native-web"
],
"author": "kiwi.com",
"license": "MIT",
"dependencies": {
"@kiwicom/orbit-design-tokens": "^0.3.0",
"react-native-modal": "^7.0.2",
"react-native-multi-slider": "https://github.com/kiwicom/react-native-multi-slider.git#beb71bf5eb210fed393cb29b18032105b725611e",
"react-native-status-bar-height": "^2.2.0",
"styled-components": "^4.1.3"
},
"peerDependencies": {
"react": "16.6.1",
"react-native": "^0.57.5"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@emotion/styled": "^0.10.6",
"@kiwicom/eslint-config": "^2.7.0",
"@storybook/addon-actions": "^4.0.7",
"@storybook/addon-knobs": "^4.0.7",
"@storybook/addon-links": "^4.0.6",
"@storybook/addon-ondevice-knobs": "^4.0.7",
"@storybook/react": "^4.0.6",
"@storybook/react-native": "^4.0.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"babel-runtime": "^6.26.0",
"eslint": "^5.13.0",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react-native": "^3.6.0",
"file-loader": "^3.0.1",
"flow-bin": "0.92.1",
"jest": "^24.1.0",
"loki": "^0.14.2",
"metro-react-native-babel-preset": "^0.49.1",
"prettier": "^1.16.4",
"prettier-eslint-cli": "^4.7.1",
"react": "16.7.0",
"react-art": "16.7.0",
"react-dom": "16.7.0",
"react-native": "^0.57.5",
"react-native-storybook-loader": "^1.8.0",
"react-native-testing-library": "^1.5.0",
"react-native-web": "^0.10.0",
"react-native-web-image-loader": "^0.0.6",
"react-test-renderer": "16.7.0",
"regenerator-runtime": "^0.13.1",
"release-it": "^10.0.7",
"rimraf": "^2.6.3",
"snapshot-diff": "^0.5.0",
"webpack": "^4.29.1"
},
"config": {
"react-native-storybook-loader": {
"searchDir": [
"./src"
],
"pattern": "**/*.stories.js",
"outputFile": "storybook.native/story-loader.js"
}
},
"rnpm": {
"assets": [
"lib/fonts"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"loki": {
"configurations": {
"chrome.laptop": {
"target": "chrome.app",
"width": 1366,
"height": 768
},
"ios.iphoneX": {
"target": "ios.simulator"
}
}
},
"resolutions": {
"eslint-plugin-jest": "^22.2.1"
}
}