-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.94 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
{
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"storybook": "start-storybook -p 7007",
"prestorybook": "rnstl",
"pre-push": "npm run lint && npm test"
},
"dependencies": {
"react": "16.13.1",
"react-native": "0.62.2",
"styled-components": "5.1.1"
},
"devDependencies": {
"@babel/core": "7.10.2",
"@babel/runtime": "7.10.2",
"@react-native-community/eslint-config": "2.0.0",
"@storybook/addon-actions": "5.3.19",
"@storybook/addon-knobs": "5.3.19",
"@storybook/addon-ondevice-actions": "5.3.19",
"@storybook/addon-ondevice-knobs": "5.3.19",
"@storybook/addons": "5.3.19",
"@storybook/react-native": "5.3.19",
"@storybook/react-native-server": "5.3.19",
"@testing-library/react-hooks": "3.3.0",
"@types/jest": "26.0.0",
"@types/react-native": "0.62.13",
"@types/react-test-renderer": "16.9.2",
"@types/styled-components": "5.1.0",
"@typescript-eslint/eslint-plugin": "3.2.0",
"@typescript-eslint/parser": "3.2.0",
"babel-jest": "26.0.1",
"babel-loader": "8.1.0",
"eslint": "7.2.0",
"eslint-config-xo-space": "0.25.0",
"eslint-plugin-unicorn": "20.1.0",
"husky": "4.2.5",
"jest": "26.0.1",
"jest-styled-components": "7.0.2",
"metro-react-native-babel-preset": "0.59.0",
"prettier": "2.0.5",
"react-dom": "16.13.1",
"react-native-storybook-loader": "1.8.1",
"react-test-renderer": "16.13.1",
"storybook-addon-ondevice-styled-theme": "0.0.1",
"typescript": "3.9.5"
},
"private": true,
"config": {
"react-native-storybook-loader": {
"searchDir": [
"./storybook/stories"
],
"pattern": "**/*.stories.tsx",
"outputFile": "./storybook/story-loader.js"
}
},
"husky": {
"hooks": {
"pre-push": "npm run pre-push"
}
}
}