-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.99 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
{
"name": "ae-graphytica",
"version": "0.0.0",
"license": "MIT",
"main": "main.js",
"build": {
"appID": "ae-graphytica",
"productName": "Graphytica",
"description": "Local graph database editor and analyzer with GUI",
"icon": "dist/favicon.png"
},
"scripts": {
"ng": "ng",
"start": "ng serve --progress=true --open=true",
"ngbuild": "ng build",
"ngbuild-prod": "ng build --prod",
"electron": "electron .",
"app": "chcp 65001 && npm run electron && chcp 866",
"build-app": "npm run ngbuild && npm run app",
"build-app-linux": "npm run ngbuild && npm run electron",
"electron-pack": "electron-packager . --ignore=\"(^/src|^/e2e|^/.vscode|^/unused|^/splashscreen|^/debug.log)\" --overwrite --out=../",
"release-splash": "node ./splashscreen/release.js",
"release": "npm run ngbuild-prod && npm run electron-pack && npm run release-splash"
},
"private": true,
"dependencies": {
"@angular/animations": "^10.2.5",
"@angular/common": "^10.2.5",
"@angular/compiler": "^10.2.5",
"@angular/core": "^10.2.5",
"@angular/forms": "^10.2.5",
"@angular/platform-browser": "^10.2.5",
"@angular/platform-browser-dynamic": "^10.2.5",
"@angular/router": "^10.2.5",
"@ctrl/ngx-codemirror": "^4.1.0",
"codemirror": "^5.61.0",
"csv-parse": "^4.15.4",
"cytoscape": "^3.18.2",
"cytoscape-cola": "^2.4.0",
"cytoscape-grid-guide": "^2.3.2",
"legacy-encoding": "^3.0.0",
"ngx-autosize": "^1.8.4",
"ngx-electron": "^2.2.0",
"rxjs": "^6.6.7",
"single-instance": "0.0.1",
"stream-transform": "^2.1.0",
"tslib": "^2.2.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^10.0.1",
"@angular/cli": "^10.2.3",
"@angular/compiler-cli": "^10.2.5",
"@types/node": "^12.20.10",
"codelyzer": "^6.0.0",
"electron": "^10.4.3",
"electron-packager": "^15.2.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "^3.9.2"
}
}