-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 3.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
{
"name": "beep-boop",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev:full": "concurrently \"NODE_ENV=full vite --force\" \"npm run dev:styles\"",
"dev:demo": "concurrently \"NODE_ENV=demo vite --force\" \"npm run dev:styles\"",
"dev:styles": "tailwindcss -i ./src/index.css -o ./dist/output.css --watch",
"build:full": "tsc && npm run build:styles && NODE_ENV=full vite build",
"build:demo": "tsc && npm run build:styles && NODE_ENV=demo vite build",
"build:capacitor:full": "tsc && npm run build:styles && NODE_ENV=full vite build --config vite-capacitor.config.ts --outDir dist-full",
"build:capacitor:demo": "tsc && npm run build:styles && NODE_ENV=demo vite build --config vite-capacitor.config.ts --outDir dist-demo",
"build:styles": "tailwindcss -i ./src/index.css -o ./dist/output.css",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"assets": "npx @capacitor/assets generate",
"android:dev": "npm run android:sync && npx cap run android",
"android:sync": "npm run build:capacitor:full && npx cap sync android",
"android:create": "npm run build:capacitor:full && npx cap add android",
"android:open": "npm run android:sync && npx cap open android",
"ios:dev": "npm run ios:sync && npx cap run ios",
"ios:sync": "npm run build:capacitor:full && npx cap sync ios",
"ios:create": "npm run build:capacitor:full && npx cap add ios",
"ios:open": "npm run ios:sync && npx cap open ios",
"electron:dev:full": "npm run electron:sync:full && npx cap open @capacitor-community/electron",
"electron:dev:demo": "npm run electron:sync:demo && npx cap open @capacitor-community/electron",
"electron:sync:full": "npm run build:capacitor:full && NODE_ENV=full npx cap sync @capacitor-community/electron",
"electron:sync:demo": "npm run build:capacitor:demo && NODE_ENV=demo npx cap sync @capacitor-community/electron",
"pack:full": "npm run electron:sync:full && cd electron && NODE_ENV=full npm run pack:all",
"pack:demo": "npm run electron:sync:demo && cd electron && NODE_ENV=demo npm run pack:all",
"pack": "npm run pack:full && npm run pack:demo",
"appflow:build": "npm run appflow:version && npm run build:capacitor:full",
"appflow:version": "npx capacitor-set-version -v $(npm pkg get version | tr -d \\\") -b $(date +%y%m%d%H%M)"
},
"dependencies": {
"@capacitor-community/electron": "^5.0.1",
"@capacitor/android": "^5.7.2",
"@capacitor/core": "^5.7.2",
"@capacitor/ios": "^5.7.2",
"@capacitor/status-bar": "^5.0.8",
"@overreact/engine": "^0.27.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^5.7.2",
"@types/node": "^22.4.0",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vite": "^5.0.8"
}
}