-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.91 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
{
"name": "camara-native",
"version": "1.0.0-beta.15",
"description": "A design system that helps you build your ideas quickly",
"author": {
"name": "Presh Onyee",
"email": "preshonyee@gmail.com"
},
"license": "MIT",
"repository": "Camaradotspace/camara-native",
"keywords": [
"React Native",
"Component",
"react-native-components",
"Library",
"Typescript",
"Storybook"
],
"bugs": {
"url": "https://github.com/Camaradotspace/camara-native/issues"
},
"homepage": "https://github.com/Camaradotspace/camara-native#readme",
"scripts": {
"start": "expo start",
"build": "bob build",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test:unit": "jest",
"lint": "eslint",
"format": "prettier *.{js,tsx} -w",
"build-storybook": "build-storybook",
"storybook": "start-storybook -p 6006",
"prepare": "bob build",
"docs": "cd docs && yarn develop"
},
"dependencies": {
"@shopify/restyle": "^1.4.0",
"expo": "~41.0.1",
"expo-status-bar": "~1.0.4",
"react-native": "https://github.com/expo/react-native/archive/sdk-41.0.0.tar.gz",
"react-native-svg": "12.1.0",
"react-native-web": "~0.13.12"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@storybook/addon-actions": "^5.3",
"@storybook/addon-knobs": "^5.3",
"@storybook/addon-links": "^5.3",
"@storybook/addon-ondevice-actions": "^5.3.23",
"@storybook/addon-ondevice-knobs": "^5.3.25",
"@storybook/react-native": "^5.3.25",
"@storybook/react-native-server": "^5.3.23",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"babel-loader": "^8.2.2",
"cz-conventional-changelog": "3.3.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native-builder-bob": "^0.18.1",
"typescript": "~4.0.0"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base)"
],
"setupFilesAfterEnv": [
"<rootDir>/__mocks__/globalMock.js"
],
"modulePathIgnorePatterns": [
"<rootDir>/lib/"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"main": "lib\\commonjs\\index.js",
"expoApp": "node_modules/expo/AppEntry.js",
"react-native": "src\\index.ts",
"module": "lib\\module\\index.js",
"types": "lib\\typescript\\src\\index.d.ts",
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
]
}