-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
67 lines (67 loc) · 1.98 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
{
"name": "simplest-file-renamer",
"version": "1.0.2",
"description": "Simplest app to rename your files",
"homepage": "https://github.com/whyboris/Simplest-File-Renamer",
"author": {
"name": "Boris Yakubchik",
"email": "yboris@yahoo.com"
},
"keywords": [
"renamer",
"rename"
],
"main": "main.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/whyboris/Simplest-File-Renamer.git"
},
"scripts": {
"start": "npm-run-all -p electron:serve ng:serve",
"build": "npm run electron:serve-tsc && ng build --base-href ./",
"build:prod": "npm run build -- -c production",
"electron": "npm run build:prod && electron-builder build",
"electron:serve": "wait-on tcp:4200 && npm run electron:serve-tsc && npx electron . --serve",
"electron:serve-tsc": "tsc -p tsconfig-serve.json",
"ng": "ng",
"ng:serve": "ng serve",
"postinstall": "electron-builder install-app-deps",
"lint": "ng lint"
},
"dependencies": {
"electron-settings": "4.0.4",
"path": "0.12.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.0.3",
"@angular-eslint/builder": "18.0.1",
"@angular/cli": "18.0.3",
"@angular/common": "18.0.2",
"@angular/compiler": "18.0.2",
"@angular/compiler-cli": "18.0.2",
"@angular/core": "18.0.2",
"@angular/forms": "18.0.2",
"@angular/language-service": "18.0.2",
"@angular/platform-browser": "18.0.2",
"@angular/platform-browser-dynamic": "18.0.2",
"@types/node": "20.14.2",
"@types/quill": "2.0.14",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"electron": "31.0.0",
"electron-builder": "24.13.3",
"electron-reload": "1.5.0",
"npm-run-all": "4.1.5",
"quill": "1.3.7",
"rxjs": "7.8.1",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"wait-on": "7.2.0",
"webdriver-manager": "12.1.9",
"zone.js": "0.14.7"
},
"browserslist": [
"chrome 126"
]
}