-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 2.25 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
{
"name": "reactnative-enterprise",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"postinstall": "npx patch-package -y",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios -c",
"web": "expo start --web",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"analyze:bundle": "react-native-bundle-visualizer --only-mapped --entry-file ./index.js --bundle-output ./rn.bundle --expo",
"coupling-graph": "npx skott src/pages/HomePage.tsx",
"prepare": "husky install",
"storybook-generate": "sb-rn-get-stories",
"storybook-watch": "sb-rn-watcher",
"commitlint": "commitlint --edit"
},
"dependencies": {
"@t3-oss/env-core": "^0.6.1",
"expo": "~49.0.8",
"expo-status-bar": "~1.6.0",
"react": "18.2.0",
"react-native": "0.72.4",
"zod": "^3.22.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@react-native-async-storage/async-storage": "1.18.2",
"@react-native-community/datetimepicker": "7.2.0",
"@react-native-community/slider": "4.4.2",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-controls": "^6.5.16",
"@storybook/addon-ondevice-actions": "^6.5.6",
"@storybook/addon-ondevice-controls": "^6.5.6",
"@storybook/react-native": "^6.5.6",
"@total-typescript/ts-reset": "^0.5.0",
"@types/react": "~18.2.14",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"babel-loader": "^8.3.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-universe": "^12.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.0.2",
"react-dom": "^18.2.0",
"react-native-bundle-visualizer": "^3.1.3",
"react-native-safe-area-context": "4.6.3",
"skott": "^0.28.1",
"typescript": "^5.1.3"
},
"private": true,
"lint-staged": {
"*.{js,ts,tsx,jsx}": "eslint --cache --fix",
"*.{js,css,md,ts,tsx,jsx}": "prettier --write"
}
}