-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.66 KB
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
{
"name": "funlearn",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"dev": "cd web && vite --host",
"dev:all": "concurrently \"node server.js\" \"cd web && vite --host\"",
"server": "node server.js",
"build": "cd web && vue-tsc -b && vite build",
"preview": "cd web && vite preview",
"check": "cd web && vue-tsc --noEmit",
"cap:sync": "cd web && npx cap sync",
"cap:android": "cd web && npx cap sync android && npx cap open android",
"cap:ios": "cd web && npx cap sync ios && npx cap open ios",
"electron:dev": "NODE_ENV=development electron electron/main.cjs",
"electron:build": "set \"VITE_API_BASE_URL=http://127.0.0.1:3000\" && npm run build && electron-builder --win"
},
"dependencies": {
"@capacitor/android": "^8.3.4",
"@capacitor/app": "^8.1.0",
"@capacitor/cli": "^8.3.4",
"@capacitor/core": "^8.3.4",
"@capacitor/ios": "^8.3.4",
"@capacitor/preferences": "^8.0.1",
"@capacitor/push-notifications": "^8.1.1",
"@capacitor/share": "^8.0.1",
"@capacitor/splash-screen": "^8.0.1",
"@capacitor/status-bar": "^8.0.2",
"@sentry/vue": "^10.55.0",
"@twn39/edgetts-js": "^1.1.0",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.10.0",
"concurrently": "^9.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.18.2",
"express-rate-limit": "^7.5.0",
"hanzi-writer": "^3.7.3",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.3",
"lucide-vue-next": "^0.468.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^8.0.10",
"pg": "^8.21.0",
"pinia": "^2.3.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"sql.js": "^1.14.1",
"uuid": "^9.0.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"ws": "^8.21.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@vitejs/plugin-vue": "^5.2.1",
"autoprefixer": "^10.4.20",
"electron": "^32.3.3",
"electron-builder": "^25.1.8",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"typescript": "~5.6.0",
"vite": "^6.0.0",
"vue-tsc": "^2.2.0"
},
"build": {
"appId": "com.funlearn.app",
"productName": "FunLearn",
"directories": {
"output": "release",
"buildResources": "electron/build"
},
"asar": false,
"files": [
"electron/main.cjs",
"web/dist/**/*",
"server.js",
"server/**/*",
"scripts/**/*",
"package.json"
],
"win": {
"target": "nsis",
"icon": "electron/build/icon.png",
"signAndEditExecutable": false
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}