-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.89 KB
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
{
"name": "fsec-plotter",
"productName": "fsec-plotter",
"version": "0.2.5",
"author": "koji takaki",
"description": "plotting app to create plot with output by Shimazu- Fluorescence-Detection Size-Exclusion Chromatography",
"scripts": {
"build:all": "rm -rf dist && rm -rf out && pyinstaller.exe projects/main/src/main.py && cp -r projects/main/data dist && npm run build",
"build:el": "tsc --build projects/main/tsconfig.json",
"build:ng": "ng build --configuration production --base-href ./",
"build": "npm-run-all -s build:el build:ng",
"format": "prettier --write .",
"make": "npm run build:all && electron-forge make",
"ng": "ng",
"package": "electron-forge package",
"publish": "npm run build:all && electron-forge publish",
"serve-watch:el": "wait-on tcp:4200 && npm-run-all -p watch:el serve:el",
"serve:el": "electron . --development",
"serve:ng": "ng serve",
"serve": "npm-run-all -p serve:ng serve-watch:el",
"start:el": "electron .",
"start": "electron-forge start",
"test": "ng test",
"watch:el": "tsc --build --watch projects/main/tsconfig.json"
},
"main": "dist/main.js",
"private": true,
"dependencies": {
"@angular/animations": "^17.2.4",
"@angular/common": "^17.2.4",
"@angular/compiler": "^17.2.4",
"@angular/core": "^17.2.4",
"@angular/forms": "^17.2.4",
"@angular/platform-browser": "^17.2.4",
"@angular/platform-browser-dynamic": "^17.2.4",
"@angular/router": "^17.2.4",
"@preline/dropdown": "^2.0.2",
"@preline/tooltip": "^2.0.2",
"electron-debug": "^3.2.0",
"electron-reloader": "^1.2.3",
"electron-squirrel-startup": "^1.0.0",
"flowbite": "^2.2.1",
"preline": "^2.0.3",
"primeng": "^17.10.0",
"python-shell": "^5.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.6.2",
"update-electron-app": "^2.0.1",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.2.3",
"@angular/cli": "~17.2.3",
"@angular/compiler-cli": "^17.2.4",
"@electron-forge/cli": "^6.0.5",
"@electron-forge/maker-deb": "^6.0.5",
"@electron-forge/maker-rpm": "^6.0.5",
"@electron-forge/maker-squirrel": "^6.0.5",
"@electron-forge/maker-zip": "^6.0.5",
"@electron-forge/publisher-github": "^6.1.1",
"@types/jasmine": "~4.3.0",
"autoprefixer": "^10.4.17",
"electron": "^23.1.0",
"husky": "^9.0.10",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"oxlint": "^0.2.13",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1",
"typescript": "~5.3.3",
"wait-on": "^7.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/toasty-kj/FSECplot.git"
}
}