-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 1.9 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
{
"name": "Sailsmakr",
"version": "1.0.0",
"description": "An innovative platform fostering creativity and collaboration for all users.",
"author": "Sailsmakr Software LLC <info@sailsmakr.com>",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "concurrently \"npm run flask\" \"npm run electron\"",
"flask": "python run.py",
"electron": "electron .",
"build": "electron-builder"
},
"devDependencies": {
"concurrently": "^8.2.0",
"electron": "^31.0.1",
"electron-builder": "^25.0.5",
"tailwindcss": "^3.4.4"
},
"dependencies": {
"@capacitor/cli": "^6.1.2",
"@capacitor/core": "^6.1.2",
"@fortawesome/fontawesome-free": "^6.6.0",
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@tailwindcss/forms": "^0.5.7",
"electron-updater": "^6.3.4",
"flag-icons": "^7.2.3",
"fullcalendar": "^6.1.11",
"i18next": "^23.15.1",
"i18next-electron-fs-backend": "^3.0.2",
"i18next-fs-backend": "^2.3.2",
"intl-tel-input": "^24.5.2",
"list.js": "^2.3.1",
"material-icons": "^1.13.12",
"quill": "^2.0.2",
"sweetalert2": "^11.11.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/expo180/sailsmakr.git"
},
"build": {
"appId": "com.sailsmakr.app",
"productName": "sailsmakr",
"directories": {
"output": "dist"
},
"files": [
"build/**/*",
"main.js",
"run.py",
"package.json"
],
"win": {
"icon": "build/icon.ico",
"target": [
"nsis"
]
},
"mac": {
"icon": "build/icon.icns",
"target": [
"dmg",
"zip"
]
},
"linux": {
"icon": "build/icon.png",
"target": [
"AppImage",
"deb"
]
},
"publish": [
{
"provider": "github",
"owner": "expo180",
"repo": "sailsmakr"
}
]
}
}