-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.31 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
{
"name": "litser",
"version": "2.1.0",
"main": "./main.js",
"bin": "./cli.js",
"private": true,
"expressPort": 8080,
"basePath": "./dist",
"scripts": {
"test": "jest",
"cli": "node cli.js",
"start": "electron .",
"dev": "electron --debug .",
"build": "webpack --mode production",
"watch": "webpack --mode production -w",
"package:win": "electron-packager . litser --overwrite --asar --platform=win32 --arch=x64 --app-version=2.1.0 --prune --out=desktop/win --ignore=src --icon=./dist/public/img/icon.ico",
"package:mac": "electron-packager . litser --overwrite --asar --platform=darwin --arch=x64 --app-version=2.1.0 --prune --out=desktop/mac --ignore=src --icon=./dist/public/img/icon.ico",
"package:linux": "electron-packager . litser --overwrite --asar --platform=linux --arch=x64 --app-version=2.1.0 --prune --out=desktop/linux --ignore=src --icon=./dist/public/img/icon.ico"
},
"author": "github: TheWitcher1991 <[email protected]>",
"license": "GNU GPL",
"repository": {
"type": "git",
"url": "git+https://github.com/TheWitcher1991/litser"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/plugin-transform-for-of": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/runtime": "^7.22.10",
"@symfony/webpack-encore": "^4.4.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"devtron": "^1.4.0",
"electron": "^25.5.0",
"electron-log": "^4.4.8",
"electron-packager": "^17.1.1",
"eslint": "^8.50.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"idempotent-babel-polyfill": "^7.4.4",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"mini-css-extract-plugin": "^2.7.6",
"prune": "^0.0.2",
"sass": "^1.65.1",
"sass-loader": "^13.3.2",
"update-electron-app": "^2.0.1",
"util": "^0.12.5",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@electron/asar": "^3.2.4"
},
"devEngines": {
"node": ">= 18.x.x",
"npm": ">= 9.x.x"
},
"browser": {
"fs": false,
"path": false,
"os": false
},
"jest": {
"testEnvironment": "jsdom"
}
}