-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
117 lines (117 loc) · 6.74 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
{
"name": "@flakeed/tai",
"version": "0.0.0",
"description": "",
"license": "Unlicense",
"type": "module",
"scripts": {
"generate-schema": "tsc generate-schema.ts --outDir . && node generate-schema.js",
"generate-schemas": "npm run generate-action-sheet-schema && npm run generate-dialog-schemas && npm run generate-firebase-push-notification-schemas",
"generate-action-sheet-schema": "npm run generate-schema -- --interface-file-path=\"@capacitor/action-sheet/dist/esm/definitions.d.ts\" --interface-name=\"ShowActionsOptions\" --output-json-file-path=\"./imports/action-sheet/schema.json\"",
"generate-dialog-schemas": "npm run generate-alert-schema && npm run generate-prompt-schema && npm run generate-confirm-schema",
"generate-alert-schema": "npm run generate-schema -- --interface-file-path=\"@capacitor/dialog/dist/esm/definitions.d.ts\" --interface-name=\"ConfirmOptions\" --output-json-file-path=\"./imports/dialog/alert-schema.json\"",
"generate-prompt-schema": "npm run generate-schema -- --interface-file-path=\"@capacitor/dialog/dist/esm/definitions.d.ts\" --interface-name=\"PromptOptions\" --output-json-file-path=\"./imports/dialog/prompt-schema.json\"",
"generate-confirm-schema": "npm run generate-schema -- --interface-file-path=\"@capacitor/dialog/dist/esm/definitions.d.ts\" --interface-name=\"ConfirmOptions\" --output-json-file-path=\"./imports/dialog/confirm-schema.json\"",
"generate-firebase-push-notification-schemas": "npm run generate-schema -- --interface-file-path=\"./imports/firebase-push-notification/push-notification.ts\" --interface-name=\"NotificationPayload\" --output-json-file-path=\"./imports/firebase-push-notification/schema.json\"",
"build-pack": "cd electron && npm run electron:pack",
"build-core": "(cross-env npm_config_yes=true NEXT_PUBLIC_ENGINES=1 NEXT_PUBLIC_HIDEPATH=1 MIGRATIONS_ID_TYPE_SQL=bigint MIGRATIONS_ID_TYPE_GQL=bigint MIGRATIONS_HASURA_PATH=localhost:8080 MIGRATIONS_HASURA_SSL=0 MIGRATIONS_HASURA_SECRET=myadminsecretkey NEXT_PUBLIC_DEEPLINKS_SERVER=http://localhost:3007 NEXT_PUBLIC_GQL_PATH=localhost:3006/gql NEXT_PUBLIC_GQL_SSL=0 DEEPLINKS_HASURA_PATH=localhost:8080 DEEPLINKS_HASURA_SSL=0 MIGRATIONS_DEEPLINKS_APP_URL=http://host.docker.internal:3007 MIGRATIONS_DEEPLINKS_URL=http://host.docker.internal:3006 npm run build-electron)",
"build-windows": "(cross-env MIGRATIONS_DIR=.migrate && npm run build-core) && npm run build-pack",
"build-unix": "(cross-env MIGRATIONS_DIR=/tmp/.migrate && npm run build-core) && npm run build-pack",
"build-mac": "APPLEIDPASS=$(security find-generic-password -w -a [email protected]) [email protected] CSC_NAME='ABRAKAR, OOO (8ZG6TUT4AY)' npm run build-unix",
"open-android": "npx cap open android",
"build-browser-extension-linux": "npm run build && npm run export && mv ./out/_next ./out/next && cd ./out && grep -rl '/_next' * | xargs sed -i 's|/_next|/next|g' && cd ../ && rsync -va --delete-after out/next/ extension/next/ && cp out/*.html extension && rm -rf out",
"build-browser-extension-mac": "npm run build && npm run export && cp -rf out/_next out/next && sed -i '' -e 's~_next~next~g' out/**.html && mv out/**.html extension && rsync -va --delete-after out/next/ extension/next/ && rm -rf out && rm -rf extension.pem && /Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome --pack-extension=./extension",
"build-android": "rm -rf app && rm -rf out && npm run build && npm run export && npx cap sync android",
"build-electron": "npm run build && npm run export && npx rimraf electron/app && npx cap copy electron",
"dev-electron": "npm run build && npm run export && npx rimraf electron/app && npx cap copy electron && npx cap open electron",
"add-android": "npm run build && npm run export && rm -rf ./android && npx cap add android",
"install-next-electron": "npm ci && cd electron && npm ci && cd ..",
"export": "rm -rf out && next export",
"build": "rm -rf app && next build",
"start": "next start",
"dev": "next dev",
"run-ios": "npx cap run ios",
"open-ios": "npx cap open ios",
"build-ios": "rm -rf app && rm -rf out && npm run build && npm run export && npx cap sync ios",
"bbel": "npm run build-browser-extension-linux"
},
"dependencies": {
"@capacitor-community/contacts": "^5.0.3",
"@capacitor-community/electron": "^4.1.2",
"@capacitor/action-sheet": "^5.0.0",
"@capacitor/android": "^5.0.0",
"@capacitor/camera": "^5.0.0",
"@capacitor/cli": "^5.0.0",
"@capacitor/clipboard": "^5.0.0",
"@capacitor/core": "^5.0.0",
"@capacitor/device": "^5.0.0",
"@capacitor/dialog": "^5.0.0",
"@capacitor/geolocation": "^5.0.0",
"@capacitor/haptics": "^5.0.0",
"@capacitor/ios": "^5.0.0",
"@capacitor/local-notifications": "^5.0.0",
"@capacitor/motion": "^5.0.0",
"@capacitor/network": "^5.0.0",
"@capacitor/push-notifications": "^5.0.0",
"@capacitor/screen-reader": "^5.0.0",
"@capawesome/capacitor-file-picker": "^5.0.0",
"@chakra-ui/react": "^2.7.0",
"@chakra-ui/theme-tools": "^2.0.18",
"@deep-foundation/capacitor-device": "^4.0.25",
"@deep-foundation/deeplinks": "^0.0.196",
"@deep-foundation/react-hasura": "^0.0.15",
"@deep-foundation/react-use-are-packages-installed": "^1.0.2",
"@deep-foundation/react-with-packages-installed": "^0.5.3",
"@deep-foundation/store": "^0.0.19",
"@types/react": "^18.2.13",
"@types/react-dom": "^18.2.6",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@freephoenix888/deep-map-object": "^3.0.1",
"@google-cloud/speech": "^5.4.0",
"@google-cloud/vision": "^3.1.2",
"@ionic/pwa-elements": "^3.1.1",
"@octokit/rest": "^19.0.5",
"@rjsf/chakra-ui": "^5.6.2",
"@rjsf/core": "^5.6.2",
"@rjsf/utils": "^5.6.2",
"@rjsf/validator-ajv8": "^5.6.2",
"react-icons": "^4.10.1",
"react-tsparticles": "^2.10.1",
"tsparticles": "^2.10.1",
"atob": "^2.1.2",
"az": "^0.2.3",
"capacitor-voice-recorder": "^5.0.0",
"dotenv": "^16.0.3",
"dotenv-load": "^2.0.1",
"events": "^3.3.0",
"firebase": "^9.22.1",
"framer-motion": "^6.5.1",
"generate-schema": "^2.6.0",
"next": "^13.4.4",
"next-env": "^1.1.1",
"next-pwa": "^5.6.0",
"node-localstorage": "^2.2.1",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^9.0.0",
"yargs": "^17.7.2"
},
"engines": {
"node": "^16.20.0"
},
"devDependencies": {
"@types/eslint": "^8.40.2",
"@types/estree": "^1.0.1",
"@types/lodash": "^4.14.149",
"browser-resolve": "^2.0.0",
"buffer": "^6.0.3",
"delay": "^6.0.0",
"detective": "^5.2.1",
"process": "^0.11.10",
"ts-node": "^10.9.1",
"typescript": "5.0.4",
"typescript-json-schema": "^0.56.0"
}
}