-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.24 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
{
"name": "react-native-calculator",
"version": "1.0.0",
"main": "app/App",
"scripts": {
"start": "expo start",
"prestart": "yarn update-stories",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"lint": "eslint . --ext .tsx",
"test": "jest",
"update-stories": "sb-rn-get-stories --config-path .ondevice",
"storybook-watcher": "sb-rn-watcher --config-path .ondevice",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-native-community/datetimepicker": "6.2.0",
"@react-native-community/slider": "4.2.3",
"expo": "^46.0.0",
"expo-splash-screen": "~0.16.2",
"expo-status-bar": "~1.4.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.5",
"react-native-web": "~0.18.7"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-controls": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/addon-ondevice-actions": "next",
"@storybook/addon-ondevice-backgrounds": "next",
"@storybook/addon-ondevice-controls": "next",
"@storybook/addon-ondevice-notes": "next",
"@storybook/addon-react-native-web": "^0.0.18",
"@storybook/react": "^6.5.10",
"@storybook/react-native": "next",
"@types/jest": "^29.0.1",
"@types/react": "~18.0.0",
"@types/react-native": "~0.69.1",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-native": "^4.0.0",
"jest": "^29.0.3",
"jest-expo": "^46.0.1",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.0",
"typescript": "^4.6.3"
},
"engines": {
"node": "^14.18.0"
},
"jest": {
"preset": "jest-expo"
},
"private": true
}