-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (50 loc) · 1.76 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
{
"name": "valhalla",
"version": "1.1.1b",
"description": "The modern productivity app",
"main": "./server/out/electron-start.js",
"scripts": {
"start": "electron .",
"start-server": "node ./server/out/server.js",
"start-electron-only": "node ./server/out/electron-only.js",
"compile": "tsc --project ./server/ & tsc --project ./client/",
"compile-server-watch": "tsc --project ./server/ -w",
"compile-client-watch": "tsc --project ./client/ -w",
"pack": "rollup client/temp/src/app.js --file client/out/app.js --format iife & java -jar lit-v1.0b2.jar",
"dist-ubuntu-latest": "npm run compile && npm run pack && electron-builder --publish=never",
"dist-windows-latest": "npm run compile && npm run pack && electron-builder --win --publish=never",
"set-version": "node update.js",
"dev": "node update.js d x.x.x false",
"prod": "node update.js p x.x.x false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akrck02/Valhalla.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/akrck02/Valhalla/issues"
},
"homepage": "https://github.com/akrck02/Valhalla#readme",
"devDependencies": {
"electron": "^18.2.1",
"electron-builder": "^22.11.7",
"rollup": "^2.70.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.11.19",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"mime": "^2.5.2",
"sqlite": "^4.0.23",
"sqlite3": "^5.0.3"
},
"build": {
"asar": "true"
}
}