-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
119 lines (119 loc) · 7.02 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
118
119
{
"name": "@deep-foundation/deepmemo",
"version": "0.0.1-dev.3",
"description": "",
"license": "Unlicense",
"type": "module",
"scripts": {
"generate-schema": "node --project='./tsconfig.json' ./automation/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=\"node_modules/@deep-foundation/firebase-push-notification/dist/push-notification.d.ts\" --interface-name=\"PushNotification\" --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='Deep Foundation (XXXXXXXXXX)' 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 clean-install && cd electron && npm clean-install && 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.5",
"@capacitor-community/electron": "^5.0.1",
"@capacitor/android": "^5.7.4",
"@capacitor/camera": "^5.0.9",
"@capacitor/core": "^5.7.4",
"@capacitor/device": "^5.0.7",
"@capacitor/dialog": "^5.0.7",
"@capacitor/geolocation": "^5.0.7",
"@capacitor/haptics": "^5.0.7",
"@capacitor/ios": "^5.7.4",
"@capacitor/network": "^5.0.7",
"@capacitor/preferences": "^5.0.7",
"@chakra-ui/react": "^2.5.5",
"@deep-foundation/capacitor-camera": "^1.1.10",
"@deep-foundation/capacitor-contacts": "^0.0.3-dev.14",
"@deep-foundation/capacitor-device": "^20.0.3-dev.1",
"@deep-foundation/capacitor-geolocation": "^8.0.0-dev.18",
"@deep-foundation/capacitor-motion": "^8.0.0-dev.8",
"@deep-foundation/capacitor-network": "^0.1.10",
"@deep-foundation/capacitor-voice-recorder": "^1.2.7-dev.24",
"@deep-foundation/deeplinks": "~0.0.312",
"@deep-foundation/firebase-push-notification": "^18.2.1",
"@deep-foundation/react-with-packages-installed": "^0.5.3",
"@deep-foundation/store": "^0.0.30",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@freephoenix888/recursive-object-map": "^1.0.0",
"@google-cloud/speech": "^5.4.0",
"@google-cloud/vision": "^3.1.2",
"@ionic/pwa-elements": "^3.2.2",
"@kevincobain2000/json-to-html-table": "^1.0.4",
"@kofno/piper": "^4.4.0",
"@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",
"@types/node": "^16.18.71",
"atob": "^2.1.2",
"az": "^0.2.3",
"capacitor-voice-recorder": "^5.0.0",
"case-anything": "^2.1.13",
"circular-json": "^0.5.9",
"dotenv": "^16.0.3",
"dotenv-load": "^2.0.1",
"events": "^3.3.0",
"firebase": "^9.19.1",
"flatted": "^3.2.9",
"framer-motion": "^6.5.1",
"generate-schema": "^2.6.0",
"hjson": "^3.2.2",
"lodash": "^4.17.21",
"next": "^13.4.7",
"next-env": "^1.1.1",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-json-to-table": "^0.1.7",
"react-json-view-lite": "^0.9.8",
"uuid": "^9.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@capacitor/cli": "^5.7.4",
"@types/circular-json": "^0.4.0",
"@types/debug": "^4.1.8",
"@types/hjson": "^2.4.3",
"@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": "5.0.4",
"typescript-json-schema": "^0.56.0"
},
"repository": {
"type": "git",
"url": "https://github.com/deep-foundation/deep-memo-app.git"
}
}