forked from dumpus-app/dumpus-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 4.03 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
{
"name": "dumpus-app",
"version": "1.0.2",
"private": true,
"license": "GPL-3.0",
"packageManager": "pnpm@8.6.12",
"engines": {
"pnpm": "8.6.12"
},
"scripts": {
"android:dev": "cross-env-shell NODE_ENV=development \"echo 'Run `pnpm dev:mobile` in parallel' && cap sync && cap run android\"",
"android:dev:static": "cross-env-shell NODE_ENV=production \"echo 'Run `pnpm build:mobile first` && cap sync && cap run android\"",
"build": "cross-env-shell NEXT_PUBLIC_DEPLOY_ENV=web \"pnpm build:shared\"",
"build:desktop": "cross-env-shell NEXT_PUBLIC_DEPLOY_ENV=desktop \"pnpm build:shared\"",
"build:mobile": "cross-env-shell NEXT_PUBLIC_DEPLOY_ENV=mobile \"pnpm build:shared\"",
"build:shared": "pnpm script:list-locales && next build",
"dev": "cross-env-shell NEXT_PUBLIC_DEPLOY_ENV=web \"pnpm dev:shared\"",
"dev:desktop": "cross-env-shell NEXT_PUBLIC_DEPLOY_ENV=desktop \"pnpm dev:shared\"",
"dev:mobile": "cross-env-shell NEXT_PUBLIC_DEPLOY_ENV=mobile \"pnpm dev:shared\"",
"dev:shared": "pnpm script:list-locales && next dev",
"dev:tauri": "tauri dev",
"format": "prettier . -w",
"ios:dev": "cross-env-shell NODE_ENV=development \"cap sync && cap run ios\"",
"ios:dev:static": "cross-env-shell NODE_ENV=production \"cap sync && cap run ios\"",
"lint": "cross-env-shell NEXT_PUBLIC_DEPLOY_ENV=web \"pnpm script:list-locales && cross-env next lint\"",
"prepare": "pnpm script:list-locales",
"script:build-android": "cross-env-shell NODE_ENV=production \"cap sync\" && node ./scripts/build-android.cjs",
"script:list-locales": "node ./scripts/list-locales.cjs",
"start": "serve dist",
"tauri:icon": "tauri icon ./ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60@3x~car.png",
"trapeze:run": "node ./trapeze.config.mjs"
},
"dependencies": {
"@capacitor/android": "^5.2.2",
"@capacitor/app": "^5.0.6",
"@capacitor/core": "^5.2.2",
"@capacitor/filesystem": "^5.1.1",
"@capacitor/ios": "^5.2.2",
"@capacitor/network": "^5.0.6",
"@capacitor/share": "^5.0.6",
"@capacitor/status-bar": "^5.0.6",
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.1.0",
"@hugotomazi/capacitor-navigation-bar": "^2.0.1",
"@radix-ui/react-label": "^2.0.1",
"@radix-ui/react-scroll-area": "^1.0.3",
"@radix-ui/react-slot": "^1.0.1",
"@resvg/resvg-wasm": "^2.4.1",
"@svgr/webpack": "^8.0.1",
"@tanstack/react-query": "^4.29.12",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.14",
"capacitor-plugin-safe-area": "^2.0.5",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"consola": "^3.1.0",
"cordova-plugin-purchase": "^13.6.0",
"crc-32": "^1.2.2",
"eslint": "8.44.0",
"eslint-config-next": "13.4.11",
"flagpack-core": "^2.0.0",
"i18next": "^22.4.15",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-resources-to-backend": "^1.1.3",
"lz-string": "^1.5.0",
"mitt": "^3.0.1",
"next": "13.4.11",
"next-language-detector": "^1.0.2",
"pako": "^2.1.0",
"postcss": "8.4.25",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"react-hot-toast": "^2.4.1",
"react-i18next": "^12.2.2",
"react-markdown": "^8.0.7",
"react-medium-image-zoom": "^5.1.6",
"react-use": "^17.4.0",
"recharts": "^2.6.2",
"remark-gfm": "^3.0.1",
"satori": "^0.10.2",
"sql.js": "^1.8.0",
"tailwindcss": "3.3.2",
"typescript": "5.1.6",
"zod": "^3.21.4",
"zustand": "^4.3.9"
},
"devDependencies": {
"@capacitor/cli": "^5.2.2",
"@tailwindcss/typography": "^0.5.9",
"@tauri-apps/cli": "^1.3.1",
"@trapezedev/project": "^7.0.10",
"@types/pako": "^2.0.0",
"@types/sql.js": "^1.4.4",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"node-fetch": "^3.3.1",
"postcss-import": "^15.1.0",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.0",
"serve": "^14.2.0"
}
}