This repository has been archived by the owner on Feb 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.5 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
107
{
"name": "snailycad-manager-v2",
"version": "2.3.0",
"description": "Easily manage SnailyCAD v4 with an easy-to-understand GUI.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"compile": "tsc",
"build": "npm run compile && npx electron-packager . \"SnailyCAD Manager\" --overwrite --icon public/icon-white-bg.png --asar --out ./out",
"build:raw": "npm run compile && npx electron-packager . \"SnailyCAD Manager\" --overwrite --icon 'public/icon-white-bg.png' --ignore \"/^.*.(ts|tsx|exe|scss)/gm\" --out 'E:/_Web_Development_/.electron/BUILDS/SnailyCADManager/[2.0.0]'",
"tailwind": "npx tailwindcss -i \"./app/styles/dist/index.min.css\" -o \"./app/styles/dist/tailwind-compile.css\"",
"dev": "concurrently \"npm run dev:tailwind\" \"npm run dev:tsc\" \"npm run dev:start\"",
"dev:tailwind": "npx tailwindcss -o \"./app/styles/dist/tailwind-compile.css\" -w",
"dev:tsc": "tsc -w",
"dev:start": "electronmon ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/WhitigolProd/SnailyCAD-Manager.git"
},
"keywords": [
"SnailyCAD",
"SnailyCAD-v4",
"SnailyCAD-Manager",
"Snaily",
"CAD",
"MDT",
"CAD/MDT"
],
"author": "Whitigol Web Design",
"license": "MIT",
"bugs": {
"url": "https://github.com/WhitigolProd/SnailyCAD-Manager/issues"
},
"homepage": "https://github.com/WhitigolProd/SnailyCAD-Manager#readme",
"config": {
"forge": {
"packagerConfig": {},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "snailycad_manager"
}
},
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin"
]
},
{
"name": "@electron-forge/maker-deb",
"config": {}
},
{
"name": "@electron-forge/maker-rpm",
"config": {}
}
]
}
},
"electronmon": {
"patterns": [
"app/**/*",
"public/**/*",
"index.html",
"index.js",
"main.js",
"package.json",
"tsconfig.json",
"tailwind.config.js",
"!logs/**/*"
]
},
"dependencies": {
"ace-builds": "^1.14.0",
"ansi-to-html": "^0.7.2",
"command-exists": "^1.2.9",
"discord-webhook-nodejs": "^1.2.2",
"dotenv": "^16.0.3",
"download": "^8.0.0",
"ejs": "^3.1.8",
"electron-squirrel-startup": "^1.0.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"find-process": "^1.4.7",
"is-postgres": "^0.2.0",
"jquery": "^3.6.1",
"kill-port": "^2.0.1",
"notyf": "^3.10.0",
"parsenv": "^1.0.2",
"pm2": "^5.2.0",
"showdown": "^2.1.0"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/glob": "^8.0.0",
"@types/jquery": "^3.5.14",
"concurrently": "^7.6.0",
"electron": "^22.0.0",
"electronmon": "^2.0.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.8.4"
}
}