-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) Β· 3.42 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
{
"name": "react-native-global-components-expo",
"main": "node_modules/expo/AppEntry.js",
"version": "1.0.0",
"homepage": "https://jeongshin.github.io/",
"repository": "https://github.com/JeongShin/react-native-global-components",
"author": "JeongShin (https://github.com/JeongShin)",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"prepare": "husky install",
"lint": "eslint '**/*.{ts,tsx}' --ext .ts,.tsx --fix",
"typescript": "tsc --project tsconfig.build.json --noemit",
"patch": "yarn build && cd lib && release-it patch",
"minor": "yarn build && cd lib && release-it minor",
"major": "yarn build && cd lib && release-it major",
"build": "tsc --project tsconfig.build.json",
"storybook": "start-storybook -p 7007",
"build-storybook": "build-storybook",
"jest": "jest --runInBand",
"test": "jest",
"build-static-webapp": "expo export:web"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.23.1",
"expo": "~51.0.19",
"expo-status-bar": "~1.12.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.3",
"react-native-gesture-handler": "~2.16.1",
"react-native-reanimated": "~3.10.1",
"react-native-web": "~0.19.10"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@expo/webpack-config": "~19.0.1",
"@jest/types": "^27.5.1",
"@react-native-community/eslint-config": "^3.2.0",
"@release-it/conventional-changelog": "^5.1.1",
"@storybook/addon-actions": "^6.5",
"@storybook/addon-knobs": "^5.3",
"@storybook/addon-links": "^6.5",
"@storybook/addon-ondevice-actions": "^5.3.23",
"@storybook/addon-ondevice-knobs": "^5.3.26",
"@storybook/react-native": "^5.3.27",
"@storybook/react-native-server": "^5.3.23",
"@testing-library/jest-native": "^5.4.1",
"@testing-library/react-native": "^11.5.2",
"@types/jest": "^29.4.0",
"@types/react": "~18.2.79",
"@types/react-native": "~0.70.6",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^5.47.0",
"babel-jest": "^29.4.1",
"babel-loader": "^8.3.0",
"babel-preset-expo": "~11.0.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"husky": "^8.0.2",
"jest": "^29.4.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"react-native-builder-bob": "^0.20.3",
"react-test-renderer": "^18.1.0",
"release-it": "^15.6.0",
"ts-node": "^10.9.1",
"typescript": "~5.3.3"
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"resolutions": {
"@types/react": "^18.0.21",
"@types/react-native": "0.70.6"
},
"license": "MIT"
}