-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.98 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
{
"name": "joconde",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test": "yarn test:lint && yarn test:types && yarn test:jest:ci",
"test:types": "tsc",
"test:lint": "eslint . --ext .js,.jsx,.ts,.tsx --report-unused-disable-directives --max-warnings 0 --cache --cache-strategy content --cache-location .cache/eslint.json",
"test:jest": "jest --watch --runInBand --bail",
"test:jest:ci": "jest",
"i18n:extract": "lingui extract --clean",
"i18n:compile": "lingui compile",
"i18n:update": "lingui extract --clean && lingui compile",
"postinstall": "yarn i18n:update",
"increment-build-number": "ts-node ./scripts/increment-build-number.ts",
"increment-runtime-version": "ts-node ./scripts/increment-runtime-version.ts",
"find-dead-code": "ts-prune --ignore '__mocks__/*|src/testing/*|metro.config.js|.*.d.ts'"
},
"dependencies": {
"@formatjs/intl-listformat": "^7.1.9",
"@formatjs/intl-locale": "^3.1.1",
"@lingui/format-json": "^4.1.2",
"@lingui/react": "^4.1.2",
"@react-navigation/native": "^6.1.6",
"@react-navigation/native-stack": "^6.9.12",
"axios": "1.6.0",
"expo": "^49.0.0",
"expo-localization": "~14.3.0",
"expo-status-bar": "~1.6.0",
"expo-system-ui": "~2.4.0",
"luxon": "^3.2.1",
"react": "18.2.0",
"react-native": "0.72.4",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@bam.tech/eslint-plugin": "0.3.3",
"@lingui/cli": "^4.1.2",
"@lingui/macro": "^4.1.2",
"@react-navigation/devtools": "^6.0.18",
"@sucrase/jest-plugin": "^3.0.0",
"@testing-library/jest-native": "^5.4.2",
"@testing-library/react-native": "^12.2.2",
"@types/jest": "^29.2.6",
"@types/luxon": "^3.2.0",
"@types/react": "^18.0.27",
"@types/react-native": "^0.71.0",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"babel-jest": "29.7.0",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-module-resolver": "^5.0.0",
"cross-fetch": "4.0.0",
"eslint": "^8.44.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-jest-formatting": "^3.1.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",
"eslint-plugin-testing-library": "^5.11.0",
"jest": "^29.4.0",
"jest-expo": "^47.0.1",
"jest-watch-typeahead": "^2.2.2",
"nock": "13.3.8",
"prettier": "^2.8.8",
"react-test-renderer": "^18.2.0",
"ts-node": "^10.9.1",
"ts-prune": "^0.10.3",
"typescript": "^5.1.6"
},
"private": true,
"installConfig": {
"hoistingLimits": "workspaces"
}
}