-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
140 lines (140 loc) · 6.16 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "windesheim.ai",
"version": "1.5.1",
"main": "node_modules/expo/AppEntry.js",
"engines": {
"node": ">=18"
},
"scripts": {
"postinstall": "npx patch-package --patch-dir ./patches",
"start": "expo start",
"start:no-cache": "expo start -c",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"web:no-cache": "expo start --web -c",
"eject": "expo eject",
"cypress:open": "cypress open",
"expo:fix": "npx expo install --fix",
"expo:doctor": "npx expo-doctor",
"expo:customize": "npx expo customize",
"depcheck:run": "echo \"Running unused packages check\" && depcheck",
"lint:run": "echo \"Running eslint check\" && eslint . --max-warnings=0 --cache **/*.ts",
"lint:fix": "echo \"Running eslint check\" && eslint . --fix --max-warnings=0 --cache **/*.ts",
"prettier:run": "echo \"Running prettier check\" && prettier . --check",
"prettier:fix": "echo \"Running prettier check\" && prettier . --write",
"tsc:run": "echo \"Running typescript check\" && tsc --project tsconfig.lint.json && tsc --project ./cypress/tsconfig.json",
"e2e:run": "concurrently \"npm run web\" \"cypress run --browser electron\"",
"jest:run": "echo \"Running unit & component tests\" && jest -u --verbose",
"jest-summary:run": "echo \"Running unit & component tests\" && jest -u",
"jest-less-strict:run": "echo \"Running unit & component tests\" && jest -u --verbose --detectOpenHandles",
"jest-strict:run": "echo \"Running unit & component tests\" && jest -u --verbose --detectLeaks --detectOpenHandles",
"tests": "echo \"Running all tests\" && npm run lint:run && npm run prettier:run && npm run tsc:run && npm run depcheck:run && npm run jest:run && npm run e2e:run",
"coverage:jest": "echo \"Running unit & component tests\" && jest --coverage --coverageDirectory='coverage-jest'",
"coverage:e2e": "nyc report --reporter=text-summary",
"coverage:tests": "npm run coverage:jest && npm run coverage:e2e",
"coverage:update-badge": "npx update-badge"
},
"dependencies": {
"@expo-google-fonts/inter": "^0.2.3",
"@expo/vector-icons": "^14.0.0",
"@expo/webpack-config": "^19.0.0",
"@jsamr/counter-style": "^2.0.2",
"@nandorojo/swr-react-native": "^1.2.0",
"@native-html/transient-render-engine": "^11.2.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@react-native-async-storage/async-storage": "1.21.0",
"@react-native-community/eslint-config": "^3.2.0",
"@react-native-community/netinfo": "11.1.0",
"@react-native/metro-config": "^0.73.0",
"@react-navigation/native": "^6.1.9",
"@react-navigation/native-stack": "^6.9.15",
"@react-navigation/routers": "^6.1.9",
"@react-navigation/stack": "^6.3.20",
"@reduxjs/toolkit": "^1.9.7",
"@types/react-numeric-input": "^2.2.6",
"expo": "^50.0.20",
"expo-av": "~13.10.6",
"expo-crypto": "~12.8.1",
"expo-font": "~11.10.3",
"expo-haptics": "~12.8.1",
"expo-linear-gradient": "~12.7.2",
"expo-linking": "~6.2.2",
"expo-router": "~3.4.10",
"expo-status-bar": "~1.11.1",
"expo-web-browser": "~12.8.2",
"i18next": "^23.7.6",
"openai": "^4.16.1",
"patch-package": "^8.0.0",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^4.0.11",
"react-i18next": "^13.5.0",
"react-native": "0.73.6",
"react-native-confetti-cannon": "^1.5.2",
"react-native-dotenv": "^3.4.9",
"react-native-element-dropdown": "^2.12.2",
"react-native-error-boundary": "^1.2.3",
"react-native-fs": "^2.20.0",
"react-native-paper": "^5.11.2",
"react-native-progress": "^5.0.1",
"react-native-render-html": "^6.3.4",
"react-native-safe-area-context": "4.8.2",
"react-native-screens": "~3.29.0",
"react-native-svg": "14.1.0",
"react-native-svg-transformer": "^1.1.0",
"react-native-vector-icons": "^10.0.3",
"react-native-web": "~0.19.6",
"react-native-web-webview": "^1.0.2",
"react-native-webview": "13.6.4",
"react-native-youtube-iframe": "^2.3.0",
"react-navigation": "^5.0.0",
"react-numeric-input": "^2.2.3",
"react-redux": "^8.1.3",
"redux-persist": "^6.0.0",
"swr": "^2.2.4"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@cypress/code-coverage": "^3.12.6",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.4.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.9",
"@types/react": "~18.2.31",
"@types/react-dom": "~18.0.10",
"@types/react-native-vector-icons": "^6.4.15",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"babel-plugin-istanbul": "^6.1.1",
"check-code-coverage": "^1.10.5",
"concurrently": "^8.2.2",
"cypress": "^13.6.0",
"cypress-cucumber-preprocessor": "^4.3.1",
"depcheck": "^1.4.7",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-universe": "^12.0.0",
"eslint-plugin-cyclomatic-complexity": "^2.0.11",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-no-dimensions": "^1.2.0",
"eslint-plugin-no-else": "^0.2.2",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-react-refresh": "^0.4.3",
"expo-updates": "~0.24.13",
"jest": "^29.7.0",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"react-test-renderer": "18.2.0",
"typescript": "^5.1.3"
},
"private": true,
"overrides": {
"@expo/config-plugins": "^7.8.0"
}
}