-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.21 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
{
"name": "SparxMaths-Solver",
"version": "1.2.0",
"description": "A native math solver which gets you answers fast and for free.",
"author": {
"name": "Varun-Aditya",
"email": "me@varunaditya.xyz"
},
"main": "app.js",
"scripts": {
"start": "electron . --trace-warnings",
"server": "node app.js",
"build": "electron-builder",
"build:mac": "npm run build:mac-intel && npm run build:mac-arm",
"build:mac-intel": "electron-builder --mac --x64 --c.mac.identity=null",
"build:mac-arm": "electron-builder --mac --arm64 --c.mac.identity=null",
"build:win": "electron-builder --win --x64",
"build:all": "npm run build:mac && npm run build:win",
"postinstall": "playwright install && electron-rebuild"
},
"dependencies": {
"body-parser": "^1.19.0",
"discord-webhook-node": "^1.1.8",
"ejs": "^3.1.10",
"express": "^4.17.1",
"express-session": "^1.17.1",
"jimp": "^0.22.12",
"multer": "^1.4.2",
"playwright": "^1.44.1"
},
"devDependencies": {
"electron": "^24.8.8",
"electron-builder": "^24.13.3",
"playwright": "^1.44.1"
}
}