-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 2.89 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
{
"name": "fair-chair",
"productName": "Fair Chair",
"version": "1.0.2",
"description": "Fair Chair, a desktop application that making chairing Model United Nations committees easy.",
"main": "src/index.ts",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"make-mas": "electron-forge make --platform=mas",
"publish": "electron-forge publish",
"lint": "standard 'src/**/*.ts'"
},
"keywords": [],
"author": {
"name": "Matthew Wang",
"email": "[email protected]",
"url": "https://matthewwang.me/"
},
"repository": "https://github.com/malsf21/fair-chair",
"license": "MIT",
"standard": {
"ignore": [
"**/out/"
],
"parser": "typescript-eslint-parser",
"plugins": [
"typescript"
]
},
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"zip"
],
"linux": [
"deb"
]
},
"electronPackagerConfig": {
"packageManager": "npm",
"icon": "src/assets/img/fair-chair.icns",
"ignore": ".+.o$",
"appBundleId": "me.matthewwang.fair-chair",
"helperBundleId": "me.matthewwang.fair-chair.helper",
"buildVersion": "1.0.200"
},
"electronWinstallerConfig": {
"name": "fair_chair"
},
"electronInstallerDebian": {},
"github_repository": {
"owner": "malsf21",
"name": "fair-chair"
},
"windowsStoreConfig": {
"packageName": "",
"name": "fairchair"
}
}
},
"dependencies": {
"@angular/animations": "^7.2.10",
"@angular/common": "^7.2.10",
"@angular/compiler": "^7.2.10",
"@angular/core": "^7.2.10",
"@angular/forms": "^7.2.10",
"@angular/http": "^7.2.10",
"@angular/platform-browser": "^7.2.10",
"@angular/platform-browser-dynamic": "^7.2.10",
"@angular/router": "^7.2.10",
"@fortawesome/angular-fontawesome": "0.1.0-8",
"@fortawesome/fontawesome-svg-core": "^1.2.0-10",
"@fortawesome/free-brands-svg-icons": "^5.1.0-4",
"@fortawesome/free-solid-svg-icons": "^5.1.0-4",
"core-js": "^2.4.1",
"electron-compile": "^6.4.4",
"electron-devtools-installer": "^2.1.0",
"electron-squirrel-startup": "^1.0.0",
"ngx-electron": "^2.0.0",
"ngx-fs": "0.0.1",
"reflect-metadata": "^0.1.9",
"rxjs": "^6.0.0",
"tslib": "^1.4.0",
"zone.js": "^0.8.29"
},
"devDependencies": {
"@types/jquery": "^3.3.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"electron-forge": "^5.2.4",
"electron-prebuilt-compile": "4.0.0",
"eslint": "^5.2.0",
"eslint-plugin-typescript": "^0.11.0",
"standard": "^11.0.1",
"typescript": "~3.3.0",
"typescript-eslint-parser": "^17.0.1"
}
}