This repository has been archived by the owner on Oct 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 2.17 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
{
"name": "reventlou",
"version": "1.1.0",
"description": "Information Management System",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint -c .eslintrc.yml --ext .ts src",
"start": "npm run build && electron ./dist/index.js",
"clean": "rm -rf node_modules",
"reinstall": "npm run clean && npm install",
"rebuild node part": "npm run clean && npm install && npm run build",
"package-mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --icon=assets/icons/mac/icon.icns --prune=true --out=release-builds",
"package-win": "electron-packager . electron-tutorial-app --overwrite --asar=true --platform=win32 --arch=ia32 --icon=assets/icons/win/icon.ico --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"Information Management System\"",
"package-linux": "electron-packager . --overwrite --platform=linux --arch=x64 --icon=assets/icons/png/icon.png --prune=true --out=release-builds",
"create-installer-mac": "electron-installer-dmg ./release-builds/reventlou-darwin-x64/reventlou.app reventlou --out=release-builds --overwrite --icon=assets/icons/mac/icon.icns"
},
"author": "b3z",
"license": "MIT",
"dependencies": {
"@tsed/logger": "^6.0.0",
"@types/config": "3.3.0",
"@types/showdown": "^2.0.0",
"config": "^3.3.1",
"electron": "^21.1.1",
"electron-installer-dmg": "^4.0.0",
"highlight.js": "^11.0.0",
"jquery": "^3.5.1",
"redis": "^4.0.0",
"redis-modules-sdk": "^1.0.0",
"showdown": "^2.0.0",
"typescript": "^4.2.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.1.0",
"electron-packager": "^16.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^39.0.1",
"eslint-plugin-json": "^3.0.0",
"prettier": "2.7.1"
}
}