This repository has been archived by the owner on Dec 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
97 lines (97 loc) · 2.58 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
{
"name": "autoconfig-app",
"description": "UI for Autoconfig API",
"version": "1.4.0",
"license": "MIT",
"author": {
"name": "Borys Ponomarenko",
"email": "bponomarenko@gmail.com"
},
"angular-cli": {},
"scripts": {
"build": "build",
"start:web": "npm run proxy & ng serve",
"start:mocks": "ng serve -e mocks",
"start:app": "electron ./desktop",
"start:all": "npm run build:web4app && npm run start:app",
"proxy": "node proxy",
"build:web": "rm -rf dist/web && ng build -prod -e prod --aot false -op dist/web",
"build:web4app": "rm -rf dist/web4app && ng build -prod -e prod --aot false -bh . -op dist/web4app",
"build:mac": "rm -rf dist/app && build -m",
"build:win": "rm -rf dist/app && build -w",
"build:all": "npm run build:web4app && npm run build:win"
},
"private": true,
"dependencies": {
"@angular/common": "^2.4.0",
"@angular/compiler": "^2.4.0",
"@angular/core": "^2.4.0",
"@angular/forms": "^2.4.0",
"@angular/http": "^2.4.0",
"@angular/platform-browser": "^2.4.0",
"@angular/platform-browser-dynamic": "^2.4.0",
"@angular/platform-server": "^2.4.7",
"@angular/router": "^3.4.0",
"bootstrap": "4.0.0-alpha.6",
"core-js": "^2.4.1",
"jsonschema": "^1.1.1",
"material-design-icons": "^3.0.1",
"moment": "^2.17.1",
"ng2-bootstrap": "~1.5.0",
"rxjs": "^5.0.1",
"ts-helpers": "^1.1.1",
"zone.js": "^0.7.2"
},
"devDependencies": {
"@angular/cli": "1.0.0-beta.31",
"@angular/compiler-cli": "^2.4.0",
"@types/jasmine": "2.5.38",
"@types/node": "^6.0.42",
"angular-in-memory-web-api": "^0.2.4",
"codelyzer": "~2.0.0-beta.1",
"electron": "^1.4.15",
"electron-builder": "^15.0.0",
"express": "^4.14.1",
"express-http-proxy": "^0.11.0",
"ts-node": "1.2.1",
"tslint": "^4.3.0",
"typescript": "~2.0.0"
},
"main": "desktop/index.js",
"build": {
"appId": "autoconfig.app",
"files": [
"desktop/",
"dist/web4app",
"package.json"
],
"win": {
"target": [
"portable"
],
"icon": "resources/win/icon.ico"
},
"linux": {
"category": "Utility",
"icon": "resources/linux"
},
"mac": {
"category": "public.app-category.developer-tools",
"target": [
"dmg"
],
"icon": "resources/osx/icon.icns"
},
"dmg": {
"icon": "resources/osx/dmg-icon.icns"
},
"directories": {
"buildResources": "resources",
"output": "dist/app"
},
"publish": [
"github"
]
},
"productName": "Autoconfig API"
}