forked from ospfranco/sol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.11 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
{
"name": "sol",
"version": "2.1.21",
"private": true,
"scripts": {
"start": "react-native start",
"macos": "react-native run-macos --scheme debug",
"test": "jest",
"bump": "./bump-version.sh",
"windows": "react-native run-windows",
"permissions:reset": "tccutil reset Calendar com.ospfranco.sol && tccutil reset Accessibility com.ospfranco.sol",
"dev": "bundle exec fastlane dev && rimraf releases/Sol.app && open /Applications/Sol.app",
"release": "bundle exec fastlane release",
"nuke": "yarn && rm -rf macos/build && rm -rf macos/Pods && npx pod-install macos",
"check-dependencies": "rnx-align-deps",
"fix-dependencies": "rnx-align-deps --write",
"appcast": "./macos/Pods/Sparkle/bin/generate_appcast releases",
"pods": "bundle exec pod install --project-directory=macos",
"postinstall": "yarn pods && patch-package"
},
"dependencies": {
"@expo/plist": "^0.0.20",
"@giphy/js-fetch-api": "^4.1.2",
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-picker/picker": "^2.4.0",
"@sentry/react-native": "5.3.1",
"assert": "^2.0.0",
"axios": "^0.25.0",
"chance": "^1.1.9",
"clsx": "^1.2.1",
"expr-eval": "^2.0.2",
"fuse.js": "^6.5.3",
"immer": "^9.0.12",
"intl": "^1.2.5",
"lodash": "^4.17.21",
"luxon": "^2.3.0",
"mobx": "^6.3.12",
"mobx-react-lite": "3.4.0",
"nanoid": "^4.0.0",
"nativewind": "2.0.11",
"patch-package": "^6.5.1",
"postinstall-postinstall": "^2.1.0",
"pretty-bytes": "^6.1.1",
"react": "18.2.0",
"react-native": "^0.73.1",
"react-native-get-random-values": "^1.8.0",
"react-native-macos": "^0.73.1",
"react-native-webview": "^12.0.2",
"react-native-windows": "^0.71.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "^0.73.18",
"@react-native/eslint-config": "^0.73.1",
"@react-native/metro-config": "^0.73.2",
"@react-native/typescript-config": "0.73.1",
"@rnx-kit/align-deps": "^2.2.4",
"@tsconfig/react-native": "^2.0.2",
"@types/chance": "^1.1.3",
"@types/jest": "^29.2.1",
"@types/lodash": "^4.14.182",
"@types/luxon": "^2.0.9",
"@types/react": "^18.2.6",
"@types/react-native": "^0.66.12",
"@types/react-test-renderer": "^18.0.0",
"@types/uuid": "^9.0.0",
"babel-jest": "^29.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"prettier": "^2.8.8",
"react-test-renderer": "18.2.0",
"rimraf": "^3.0.2",
"tailwindcss": "3.2.4",
"typescript": "5.0.4"
},
"jest": {
"preset": "react-native"
},
"rnx-kit": {
"kitType": "app",
"alignDeps": {
"requirements": [
],
"capabilities": [
"babel-preset-react-native",
"core",
"core-android",
"core-ios",
"core-macos",
"core-windows",
"jest",
"react",
"react-test-renderer",
"storage",
"webview"
]
}
}
}