-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.09 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
{
"main": "index.js",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"web": "expo start --web",
"start": "react-native start",
"test": "jest",
"test:watch": "yarn test --watchAll true",
"test:coverage": "yarn test --coverage --watchAll false",
"tsc": "tsc --skipLibCheck",
"storybook": "start-storybook -p 7007",
"build-storybook": "build-storybook",
"prestorybook": "rnstl"
},
"dependencies": {
"expo": "~41.0.0",
"expo-splash-screen": "~0.10.2",
"expo-status-bar": "~1.0.4",
"expo-updates": "~0.5.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "~0.63.4",
"react-native-gesture-handler": "~1.10.2",
"react-native-reanimated": "~2.1.0",
"react-native-screens": "~3.0.0",
"react-native-unimodules": "~0.13.3",
"react-native-web": "~0.13.12",
"styled-components": "^5.2.3"
},
"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",
"@testing-library/jest-native": "^4.0.1",
"@testing-library/react-native": "^7.2.0",
"@types/jest": "^26.0.22",
"@types/react": "^17.0.3",
"@types/react-native": "^0.64.3",
"@types/react-test-renderer": "^17.0.1",
"@types/styled-components": "^5.1.9",
"@types/styled-components-react-native": "^5.1.1",
"babel-jest": "~25.2.6",
"babel-loader": "^8.2.2",
"jest": "~25.2.6",
"jest-fetch-mock": "^3.0.3",
"react-native-storybook-loader": "^2.0.2",
"react-test-renderer": "~16.13.1",
"typescript": "^4.2.4"
},
"config": {
"react-native-storybook-loader": {
"searchDir": [
"./src/components"
],
"pattern": "**/*.stories.tsx",
"outputFile": "./storybook/storyLoader.js"
}
},
"resolutions": {
"styled-components": "^5"
},
"private": true
}