generated from maximegris/angular-electron
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.92 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
108
109
110
111
{
"author": "Kyle Kemp <[email protected]>",
"description": "Modding tools for Land of the Rair.",
"name": "landoftherairmodkit",
"homepage": "https://rair.land",
"repository": {
"url": "https://github.com/LandOfTheRair/mod-toolkit-v2"
},
"version": "1.7.16",
"main": "app/main.js",
"private": true,
"scripts": {
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"start": "npm-run-all -p electron:serve ng:serve",
"ng:serve": "ng serve -c web",
"build": "npm run electron:serve-tsc && ng build --base-href ./",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"web:build": "npm run build -- -c web-production",
"build:angularonly": "npx ng build --c web-production",
"electron": "electron",
"electron:serve-tsc": "tsc -p tsconfig.serve.json",
"electron:serve": "wait-on tcp:4200 && npm run electron:serve-tsc && electron . --serve",
"electron:local": "npm run build:prod && electron .",
"electron:build": "npm run build:prod && electron-builder build --publish=never",
"test": "ng test --watch=false",
"test:watch": "ng test",
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"lint": "ng lint",
"bump:patch": "npm version patch -m \"Release Patch %s\" && npm run syncversion",
"bump:minor": "npm version minor -m \"Release Minor %s\" && npm run syncversion",
"bump:major": "npm version major -m \"Release Major %s\" && npm run syncversion",
"syncversion": "node scripts/syncversion && git commit -am \"Sync version\"",
"postsyncversion": "node scripts/postversion.reversion"
},
"dependencies": {
"@angular/common": "18.1.3",
"@angular/compiler": "18.1.3",
"@angular/core": "18.1.3",
"@angular/forms": "18.1.3",
"@angular/language-service": "18.1.3",
"@angular/platform-browser": "18.1.3",
"@angular/platform-browser-dynamic": "18.1.3",
"@angular/router": "18.1.3",
"@ng-icons/core": "29.3.0",
"@ng-icons/heroicons": "29.3.0",
"@ng-select/ng-select": "13.5.2",
"@ngneat/overview": "6.0.0",
"@ngstack/code-editor": "8.0.0",
"@ngxpert/hot-toast": "3.0.0",
"@sweetalert2/ngx-sweetalert2": "12.4.0",
"@sweetalert2/theme-dark": "5.0.17",
"ag-grid-angular": "32.0.2",
"alasql": "4.5.1",
"angular-svg-icon": "18.0.1",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"monaco-editor": "0.50.0",
"ngx-color-picker": "17.0.0",
"ngx-float-ui": "18.0.1",
"ngx-webstorage": "18.0.0",
"rxjs": "7.8.1",
"tslib": "2.6.2",
"uuid": "10.0.0",
"xlsx": "0.18.5",
"zone.js": "0.14.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "18",
"@angular-devkit/build-angular": "18.1.3",
"@angular-eslint/builder": "18",
"@angular-eslint/eslint-plugin": "18",
"@angular-eslint/eslint-plugin-template": "18",
"@angular-eslint/schematics": "18",
"@angular-eslint/template-parser": "18",
"@angular/cli": "18.1.3",
"@angular/compiler-cli": "18.1.3",
"@tailwindcss/forms": "0.5.7",
"@types/js-yaml": "4.0.9",
"@types/lodash": "4.17.7",
"@types/node": "20.12.7",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"autoprefixer": "10.4.20",
"conventional-changelog-cli": "4.1.0",
"daisyui": "4.12.10",
"electron": "30.0.1",
"electron-builder": "24.13.3",
"electron-debug": "3.2.0",
"electron-reloader": "1.2.3",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.2.3",
"eslint-plugin-prefer-arrow": "1.2.3",
"node-polyfill-webpack-plugin": "2.0.1",
"npm-run-all": "4.1.5",
"postcss": "8.4.40",
"tailwindcss": "3.4.7",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"wait-on": "7.2.0"
},
"engines": {
"node": ">= 16.14.0 || >= 18.10.0"
},
"browserslist": [
"chrome 114"
]
}