-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
109 lines (109 loc) · 3.15 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
{
"name": "Bike3S",
"version": "1.0.0",
"main": "frontend/main.js",
"author": "URJC <contact@ia.urjc.es>",
"description": "This software can create and analyse Bike Sharing System Simulations",
"homepage": "https://github.com/stimonm/Bike3S",
"scripts": {
"start:electron": "electron ./build",
"start:electron:main-debug": "electron --inspect=5858 ./build",
"start:electron:main-debug:break": "electron --inspect-brk=5858 ./build",
"distribute": "node fuse build:dist && cd build && npm install && electron-builder",
"debug:frontend": "node fuse build:dev"
},
"build": {
"appId": "es.urjc.bike3s",
"win": {
"target": [
"nsis",
"portable"
],
"icon": "icon.ico"
},
"linux": {
"target": [
"deb",
"AppImage"
],
"icon": "icon.icns"
},
"mac": {
"icon": "icon.icns"
},
"asar": false,
"files": [
"!/node_modules/*"
]
},
"dependencies": {
"@angular/animations": "^6.1.0",
"@angular/cdk": "^6.1.0",
"@angular/common": "^6.1.0",
"@angular/compiler": "^6.1.0",
"@angular/core": "^6.1.0",
"@angular/flex-layout": "^6.0.0-beta.18",
"@angular/forms": "^6.1.0",
"@angular/http": "^6.1.0",
"@angular/material": "^6.1.0",
"@angular/platform-browser": "^6.1.0",
"@angular/platform-browser-dynamic": "^6.1.0",
"@angular/platform-server": "^6.1.0",
"@angular/router": "^6.1.0",
"@angular/tsc-wrapped": "^4.4.6",
"@angular/upgrade": "^6.1.0",
"@asymmetrik/ngx-leaflet": "^2.5.3",
"@asymmetrik/ngx-leaflet-draw": "^2.7.1",
"@ng-bootstrap/ng-bootstrap": "^3.3.1",
"ajv": "^6.12.3",
"angular6-json-schema-form": "^7.0.1",
"bootstrap": "^4.0.0-beta.2",
"commander": "^2.12.2",
"conic-gradient": "github:leaverou/conic-gradient",
"core-js": "^2.5.3",
"csvtojson": "^1.1.9",
"font-awesome": "^4.7.0",
"fs-extra": "^4.0.3",
"install": "^0.11.0",
"jquery": "^3.3.1",
"json-schema-builder-ts": "github:cruizba/json-schema-builder",
"json2csv": "^3.11.5",
"jsoneditor": "^5.22.0",
"leaflet": "^1.2.0",
"leaflet-draw": "0.4",
"lodash": "^4.17.4",
"moment": "^2.29.2",
"ng-font-awesome": "github:tao-cumplido/ng-font-awesome",
"npm": "^6.5.0",
"popper.js": "^1.14.3",
"request": "^2.87.0",
"request-progress": "^3.0.0",
"rxjs": "^6.0.0",
"rxjs-compat": "^6.3.3",
"tree-kill": "^1.2.0",
"zone.js": "^0.8.18"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/fs-extra": "^4.0.7",
"@types/jquery": "^3.3.1",
"@types/jsoneditor": "^5.5.2",
"@types/leaflet": "^1.2.3",
"@types/leaflet-draw": "^0.4.11",
"@types/lodash": "^4.14.91",
"@types/moment": "^2.13.0",
"@types/node": "^8.5.1",
"@types/reflect-metadata": "0.0.5",
"electron": "^3.0.13",
"electron-builder": "^20.39.0",
"express": "^4.16.2",
"fliplog": "^1.0.4",
"fuse-box": "^3.6.0",
"json-schema-builder-ts": "github:cruizba/json-schema-builder",
"napa": "^3.0.0",
"ng2-fused": "^0.5.1",
"tslint": "^5.8.0",
"typescript": "^2.6.2",
"uglify-es": "^3.3.9"
}
}