-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
104 lines (104 loc) · 4.59 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": "@deep-foundation/deepcase-app",
"version": "0.1.0-beta.41",
"license": "Unlicense",
"main": "./bin/server.js",
"bin": {
"deepcase": "./bin/server.js"
},
"scripts": {
"git-publish": "npm i @deep-foundation/deeplinks@latest @deep-foundation/deepcase@latest --package-lock-only && git restore package.json && npm version prerelease --no-git-tag-version && git add . && git commit -m \"publish\" && git push origin main",
"package:refresh": "rm -rf node_modules; rm -f package-lock.json; npm i --workspaces false",
"package:release": "npm version prerelease && git push",
"build-pack": "(cd electron && npm run electron:pack)",
"build-core": "(cross-env npm_config_yes=true 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-chrome-extension": "run-script-os",
"build-chrome-extension:linux": "npm run export && mv ./app/_next ./app/next && cd ./app && grep -rl '/_next' * | xargs sed -i 's|/_next|/next|g' && cd ../ && rsync -va --delete-after app/next/ extension/next/ && cp app/*.html extension && rimraf app",
"build-chrome-extension:darwin": "npm run export && cp -r app/* extension && mv -i extension/_next extension/next && find ./extension -type f \\( -name \"*.js\" -o -name \"*.html\" -o -name \"*.json\" \\) -exec sed -i '' 's/_next/next/g' {} + && rimraf extension.pem && /Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome --pack-extension=./extension",
"build-android": "rimraf app && npm run export && npx cap sync android",
"build-electron": "npm run export && npx rimraf electron/app && npx cap copy electron",
"dev-electron": "npm run export && npx rimraf electron/app && npx cap copy electron && npx cap open electron",
"add-android": "npm run export && rimraf ./android && npx cap add android",
"install-next-electron": "npm ci && cd electron && npm ci && cd ..",
"export": "(cross-env NEXT_PUBLIC_EXPORT=1 NEXT_PUBLIC_I18N_DISABLE=1 next build)",
"build": "rimraf app && next build",
"start": "(npx -q wait-on --timeout 10000 http-get://127.0.0.1:${PORT:-3007}/api/revalidate &); next start -p ${PORT:-3007}",
"dev": "next dev",
"run-ios": "npx cap run ios",
"open-ios": "npx cap open ios",
"build-ios": "rimraf app && rimraf app && npm run export && npx cap sync ios"
},
"dependencies": {
"@builder.io/partytown": "^0.8.2",
"@capacitor-community/electron": "^5.0.1",
"@capacitor/android": "^5.7.4",
"@capacitor/cli": "^5.7.4",
"@capacitor/core": "^5.7.4",
"@capacitor/ios": "^5.7.4",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@types/react": "^18.2.15",
"axios": "^1.6.8",
"browser-builtins": "^3.3.1",
"browserify-fs": "^1.0.0",
"browserify-zlib": "^0.2.0",
"case-anything": "^2.1.13",
"crypto-browserify": "^3.12.0",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"dotenv-load": "^2.0.1",
"electron": "^13.1.9",
"events": "^3.3.0",
"firebase": "^9.19.1",
"fix-path": "^4.0.0",
"framer-motion": "^10.12.16",
"i18next": "^23.11.1",
"next": "^14.2.2",
"next-env": "^1.1.1",
"next-i18next": "^15.2.0",
"next-pwa": "^5.6.0",
"normalize.css": "^8.0.1",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-focus-lock": "^2.12.1",
"react-i18next": "^14.1.0",
"root-path-electron": "^1.3.3",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"tls-browserify": "^0.2.2",
"typescript": "^5.4.5",
"xterm": "^5.1.0"
},
"peerDependencies": {
"@deep-foundation/deepcase": "0.0.*"
},
"engines": {
"node": "^18"
},
"devDependencies": {
"@capacitor/cli": "^5.7.4",
"@types/debug": "^4.1.9",
"@types/node": "^20.12.7",
"@types/react": "^18.0.33",
"@types/serviceworker": "^0.0.62",
"browser-resolve": "^2.0.0",
"buffer": "^6.0.3",
"depcheck": "^1.4.3",
"detective": "^5.2.1",
"jest": "^29.5.0",
"next-transpile-modules": "^10.0.0",
"process": "^0.11.10",
"rimraf": "^5.0.5",
"run-script-os": "^1.1.6",
"ts-node": "^10.9.1",
"typescript-json-schema": "^0.56.0"
}
}