forked from quarck/CalendarNotification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.57 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
{
"name": "CNPlusSync",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "yarn react-native start",
"postinstall": "node scripts/setup_safe_area_mock.js",
"build:crsqlite:arm64": "cd scripts && ./build_crsqlite_arm64.sh",
"bundle:android": "node scripts/bundle_android.js",
"android:build:debug": "yarn bundle:android --dev=true && cd android && ./gradlew assembleDebug",
"android:build:release": "yarn bundle:android && cd android && ./gradlew assembleRelease",
"android:install:debug": "yarn bundle:android --dev=true && cd android && ./gradlew installDebug",
"android:sign:debug-apks": "node scripts/sign_android.js",
"android:build:debug:signed": "yarn android:build:debug && yarn android:sign:debug-apks",
"clean-logs": "npx ts-node scripts/clean_clipboard_logs.ts"
},
"dependencies": {
"@azure/core-asynciterator-polyfill": "^1.0.2",
"@commander-js/extra-typings": "^13.1.0",
"@jest/globals": "^29.6.4",
"@op-engineering/op-sqlite": "^11.4.8",
"@powersync/op-sqlite": "^0.4.0",
"@powersync/react-native": "latest",
"@react-native-async-storage/async-storage": "^2.1.2",
"@react-navigation/native": "^7.0.15",
"@react-navigation/native-stack": "^7.2.1",
"@supabase/supabase-js": "^2.49.1",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.90",
"@swc/jest": "^0.2.29",
"await-to-js": "^3.0.0",
"commander": "^13.1.0",
"dotenv": "^16.3.1",
"execa": "^9.5.2",
"expo": "^51.0.39",
"expo-application": "5.9.1",
"js-logger": "^1.6.1",
"log4js": "^6.9.1",
"react": "18.2.0",
"react-native": "0.74.5",
"react-native-devsettings": "^1.0.5",
"react-native-screens": "4.9.1",
"react-native-url-polyfill": "^2.0.0",
"swc-node": "^1.0.0",
"typed-emitter": "^2.1.0"
},
"devDependencies": {
"@babel/plugin-transform-async-generator-functions": "^7.26.8",
"@babel/plugin-transform-private-property-in-object": "^7.25.9",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"@react-native/js-polyfills": "^0.74.0",
"@react-native/metro-babel-transformer": "^0.74.0",
"@react-native/metro-config": "^0.74.0",
"@swc-node/register": "^1.6.7",
"@tsconfig/react-native": "^3.0.2",
"@types/jest": "^29.5.5",
"@types/node": "^22.14.0",
"@types/react": "~18.2.45",
"@types/react-test-renderer": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"babel-plugin-module-resolver": "^5.0.2",
"drizzle-kit": "^0.19.13",
"eslint": "^8.48.0",
"eslint-plugin-node": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-react-hooks": "^5.2.0",
"gts": "^5.0.0",
"husky": "^9.1.6",
"jest": "^29.6.2",
"jest-expo": "~51.0.4",
"metro-config": "~0.80.4",
"metro-runtime": "^0.79.1",
"regenerator-runtime": "^0.14.0",
"rn-game-over": "^1.1.0",
"semantic-release": "^24.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"packageManager": "[email protected]",
"expo": {
"jsEngine": "hermes",
"ios": {
"jsEngine": "jsc"
}
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
]
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}