forked from deep-foundation/deep-memo-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 6.19 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
{
"name": "@deep-foundation/sdk",
"version": "0.0.0",
"description": "",
"license": "Unlicense",
"scripts": {
"prebuild": "npm run generate-schemas",
"generate-schema": "ts-node ./generate-schema.ts",
"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": "^4.0.3",
"@capacitor-community/electron": "^4.1.2",
"@capacitor/action-sheet": "^4.1.0",
"@capacitor/android": "^4.7.3",
"@capacitor/camera": "^4.1.4",
"@capacitor/cli": "^4.7.3",
"@capacitor/clipboard": "^4.1.0",
"@capacitor/core": "^4.7.3",
"@capacitor/device": "^4.1.0",
"@capacitor/dialog": "^4.1.0",
"@capacitor/geolocation": "^4.1.0",
"@capacitor/haptics": "^4.1.0",
"@capacitor/ios": "^4.7.3",
"@capacitor/local-notifications": "^4.1.5",
"@capacitor/motion": "^4.0.2",
"@capacitor/network": "^4.1.0",
"@capacitor/push-notifications": "^4.1.2",
"@capacitor/screen-reader": "^4.1.2",
"@capawesome/capacitor-file-picker": "^0.6.3",
"@chakra-ui/react": "^2.5.5",
"@deep-foundation/deeplinks": "0.0.143",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@google-cloud/speech": "^5.4.0",
"@google-cloud/vision": "^3.1.2",
"@deep-foundation/react-hasura": "^0.0.14",
"@deep-foundation/store": "^0.0.18",
"@freephoenix888/deep-map-object": "^3.0.1",
"@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",
"atob": "^2.1.2",
"az": "^0.2.3",
"capacitor-voice-recorder": "^4.0.2",
"dotenv": "^16.0.3",
"dotenv-load": "^2.0.1",
"events": "^3.3.0",
"firebase": "^9.19.1",
"framer-motion": "^6.5.1",
"next": "^13.3.0",
"generate-schema": "^2.6.0",
"next-env": "^1.1.1",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^9.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/react": "^18.0.33",
"@types/serviceworker": "^0.0.62",
"buffer": "^6.0.3",
"jest": "^29.5.0",
"next-transpile-modules": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"typescript-json-schema": "^0.56.0"
}
}