forked from ffxiv-teamcraft/ffxiv-teamcraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
290 lines (290 loc) · 11.5 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
{
"name": "ffxiv-teamcraft",
"description": "Collaborative crafting made easy",
"homepage": "https://ffxivteamcraft.com",
"author": "FFXIV Teamcraft",
"version": "9.7.5",
"license": "MIT",
"main": "dist/apps/electron/src/main.js",
"build": {
"appId": "ffxiv-teamcraft",
"productName": "FFXIV Teamcraft",
"directories": {
"output": "release"
},
"files": [
"dist"
],
"extraResources": [
{
"from": "./node_modules/@ffxiv-teamcraft/pcap-ffxiv/lib/MachinaWrapper",
"to": "MachinaWrapper",
"filter": [
"**/*"
]
},
{
"from": "./desktop",
"to": "MachinaWrapper",
"filter": [
"**/*.exe"
]
}
],
"asarUnpack": "./dist/apps/electron/src/workers/lodestone.js",
"protocols": {
"name": "ffxiv-teamcraft",
"schemes": [
"teamcraft"
]
},
"mac": {
"category": "public.app-category.games"
},
"win": {
"icon": "./tools/build/icon.ico",
"publisherName": "FFXIV Teamcraft",
"target": "squirrel",
"sign": "./tools/build/sign-windows.js",
"publish": {
"provider": "github",
"releaseType": "release"
}
}
},
"scripts": {
"ng-high-memory": "node --max_old_space_size=4096 ./node_modules/@angular/cli/bin/ng",
"ng": "ng",
"prebuild": "node ./tools/build/prebuild.js && yarn update-lazy-files && yarn web:copyfiles",
"assets:hash": "node ./tools/build/prod-assets-hash.js",
"start-high-memory": "yarn prebuild && ng-high-memory serve --project=client",
"start": "yarn prebuild && yarn ng-high-memory serve --project=client",
"build:watch": "yarn prebuild && yarn ng-high-memory build --project=client --watch --configuration=electron-dev",
"build:prod": "yarn prebuild && yarn ng-high-memory build --project=client --configuration production --no-progress && yarn assets:hash",
"build:functions": "yarn prebuild && yarn ng-high-memory build --project=client --configuration=functions --no-progress",
"build:electron-prod": "yarn prebuild && yarn ng-high-memory build --project=client --configuration=electron && yarn assets:hash",
"build:electron-dev": "yarn prebuild && yarn ng-high-memory build --project=client --configuration=electron-dev",
"build:beta": "yarn prebuild && yarn ng-high-memory build --project=client --configuration=beta --no-progress",
"standard-version": "standard-version",
"standard-version:patch": "git fetch origin && standard-version --release-as patch && yarn standard-version:after",
"standard-version:minor": "git fetch origin && standard-version --release-as minor && yarn standard-version:after",
"standard-version:dry": "standard-version --dry-run",
"standard-version:after": "yarn prebuild && git commit -am \"chore(release): Patch notes update\"",
"release:prod": "git push --follow-tags origin master",
"release:beta": "yarn standard-version --prerelease beta && git push --follow-tags origin beta",
"test": "yarn prebuild && ng test --project=client --watch=false",
"lint": "ng lint && jsonlint-cli ./src/assets/i18n/*.json",
"e2e": "yarn prebuild && ng e2e client-e2e",
"e2e:watch": "yarn prebuild && ng e2e client-e2e --watch",
"e2e:ci": "yarn prebuild && ng e2e client-e2e --headless",
"commitmsg": "validate-commit-msg",
"prerelease": "npm test",
"commit": "git-cz",
"web:copyfiles": "copyfiles ./libs/loader/tc-loader.js ./apps/client/src/assets/ -f",
"update-lazy-files": "node ./tools/build/lazy-files-updater.js",
"data-extractor": "tsc -p apps/data-extraction/tsconfig.json && node apps/data-extraction/build/src/main.js",
"data-extractor:allag": "tsc -p apps/data-extraction/tsconfig.json && node apps/data-extraction/build/src/main.js --only allagan-reports",
"profits-api:build": "tsc -p apps/profits-api/tsconfig.json",
"************ELECTRON STUFF*****************": "",
"electron": "electron",
"electron:copyfiles": "copyfiles ./apps/electron/src/loader.html ./dist/apps/electron/src/ -f && copyfiles ./libs/loader/tc-loader.js ./dist/apps/electron/src/ -f",
"electron:build": "tsc -p apps/electron/tsconfig.json && yarn electron:copyfiles",
"electron:start": "yarn electron:build && yarn electron ./dist/apps/electron/src/main.js",
"************ELECTRON SETUP BUILD************************": "",
"electron:setup:build": "del-cli release/* && yarn electron:build && yarn build:electron-prod && electron-builder -w",
"electron:setup:build-dev": "yarn electron:build && electron-builder -w",
"electron:setup:build-dev:dir": "yarn electron:build && electron-builder -w --dir",
"electron:setup:build-beta": "del-cli release/* && yarn electron:build && yarn build:electron-dev && electron-builder -w",
"electron:setup:publish": "yarn build:electron-prod && yarn electron:build && electron-builder -w -p always",
"postinstall": "ngcc && electron-builder install-app-deps",
"release:full": "yarn build:prod && firebase deploy -P default --only hosting && yarn electron:setup:publish",
"pack": "electron-builder --dir",
"electron-builder": "electron-builder",
"***********SSR STUFF***************": "",
"build:ssr": "yarn gt:fetch && yarn webpack:ssr & node ssr/copy-translations.js & yarn copy:ssr & exit 0",
"build:ssr:ci": "yarn build:functions && yarn build:functions && yarn gt:fetch && yarn webpack:ssr; node ssr/copy-translations.js; cp -r ./dist functions; exit 0",
"webpack:ssr": "yarn ng-high-memory run client:server && webpack --config webpack.server.config.js",
"serve:ssr": "node dist/client-webpack/server.js",
"start:ssr": "yarn build:ssr & yarn serve:ssr",
"gt:fetch": "node ssr/gt-data-fetcher.js",
"copy:ssr": "copyfiles ./dist/** ./functions",
"*********** STATS STUFF **************": "",
"build:stats": "yarn prebuild && yarn ng-high-memory build --project=client --configuration production --stats-json",
"bundle-analyzer": "webpack-bundle-analyzer dist/apps/client/stats.json"
},
"private": true,
"dependencies": {
"@ffxiv-teamcraft/pcap-ffxiv": "0.10.4",
"@xivapi/nodestone": "^0.2.5",
"buffer-reader": "^0.1.0",
"electron-google-analytics": "^1.0.2",
"electron-is-dev": "^1.1.0",
"electron-log": "^4.4.6",
"electron-store": "^8.0.1",
"fs-extra": "^10.0.0",
"hash-files": "^1.1.1",
"is-elevated": "^4.0.0",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"native-is-elevated": "^0.4.3",
"ngx-google-analytics": "^11.2.1",
"request": "^2.88.2",
"rxjs": "^7.5.4",
"tslib": "^2.3.1",
"universal-analytics": "^0.5.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^13.0.0",
"@angular-devkit/build-angular": "^13.1.4",
"@angular-devkit/core": "^13.1.4",
"@angular-devkit/schematics": "^13.1.4",
"@angular/animations": "13.1.3",
"@angular/cdk": "13.1.3",
"@angular/cli": "13.1.4",
"@angular/common": "13.1.3",
"@angular/compiler": "13.1.3",
"@angular/compiler-cli": "13.1.3",
"@angular/core": "13.1.3",
"@angular/fire": "^7.4.1",
"@angular/flex-layout": "^13.0.0-beta.36",
"@angular/forms": "13.1.3",
"@angular/language-service": "13.1.3",
"@angular/platform-browser": "13.1.3",
"@angular/platform-browser-dynamic": "13.1.3",
"@angular/platform-server": "13.1.3",
"@angular/router": "13.1.3",
"@ffxiv-teamcraft/simulator": "^3.1.4",
"@ffxiv-teamcraft/simulator-cn": "npm:@ffxiv-teamcraft/[email protected]",
"@ffxiv-teamcraft/simulator-kr": "npm:@ffxiv-teamcraft/[email protected]",
"@firebase/messaging": "^0.9.6",
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-free-brands": "^5.0.13",
"@fortawesome/fontawesome-free-solid": "^5.0.13",
"@fortawesome/fontawesome-free-webfonts": "^1.0.9",
"@kaiu/ng-serializer": "1.1.1",
"@kaiu/serializer": "1.4.0",
"@ngrx/effects": "13.0.2",
"@ngrx/entity": "13.0.2",
"@ngrx/router-store": "13.0.2",
"@ngrx/schematics": "13.0.2",
"@ngrx/store": "13.0.2",
"@ngrx/store-devtools": "13.0.2",
"@nguniversal/builders": "^12.1.3",
"@nguniversal/express-engine": "^12.1.3",
"@nguniversal/module-map-ngfactory-loader": "^8.2.6",
"@ngx-translate/core": "^14.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"@nrwl/angular": "13.4.6",
"@nrwl/cypress": "13.4.6",
"@nrwl/workspace": "13.4.6",
"@swimlane/dragula": "^3.8.0",
"@swimlane/ngx-charts": "^20.0.1",
"@swimlane/ngx-dnd": "^9.0.0",
"@types/express": "^4.17.0",
"@types/express-serve-static-core": "^4.17.13",
"@types/jasmine": "3.6.11",
"@types/jasminewd2": "~2.0.3",
"@types/jwt-decode": "^2.2.1",
"@types/lodash": "^4.14.178",
"@types/node": "14.14.45",
"@types/request": "^2.48.5",
"@types/semver": "^5.4.0",
"@xivapi/angular-client": "1.8.1",
"algoliasearch": "^4.11.0",
"angular-feather": "^5.3.0",
"angular-instantsearch": "^4.0.1",
"angular2-chartjs": "^0.5.1",
"apollo-angular": "^1.8.0",
"apollo-angular-link-http": "^1.9.0",
"apollo-cache-inmemory": "^1.6.0",
"apollo-client": "^2.6.0",
"apollo-link": "^1.2.11",
"apollo-link-ws": "^1.0.20",
"bufferutil": "^4.0.5",
"chart.js": "^2.9.4",
"chartjs-chart-box-and-violin-plot": "^2.4.0",
"cli-progress": "^3.8.2",
"codecov": "^3.6.5",
"codelyzer": "6.0.0",
"colors": "^1.3.2",
"commitizen": "^2.9.6",
"copyfiles": "^2.1.0",
"core-js": "^2.5.4",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"cypress": "^4.4.0",
"cz-conventional-changelog": "^2.1.0",
"date-fns": "^2.12.0",
"deep-diff": "^1.0.2",
"del-cli": "^1.1.0",
"dexie": "^3.2.0",
"dotenv": "10.0.0",
"electron": "^18.2.4",
"electron-builder": "^23.0.3",
"electron-builder-squirrel-windows": "^23.0.9",
"enquirer": "^2.3.6",
"express": "^4.17.1",
"fast-json-patch": "^3.0.0-1",
"file-saver": "^2.0.5",
"firebase": "^9.9.0",
"firebase-tools": "^10.0.1",
"graphql": "^14.5.0",
"graphql-tag": "^2.10.0",
"hammerjs": "^2.0.8",
"husky": "^0.14.3",
"inquirer-autocomplete-prompt": "^1.0.1",
"jasmine": "2.99.0",
"jasmine-core": "~2.99.1",
"jasmine-marbles": "0.8.4",
"jasmine-spec-reporter": "~4.2.1",
"jsdom": "^18.0.0",
"jsonlint-cli": "^1.0.1",
"karma": "~6.3.4",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "~1.4.2",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"less": "^4.1.2",
"memoizee": "^0.4.14",
"multi-progress": "^2.0.0",
"ng-drag-drop": "^5.0.0",
"ng-push-ivy": "^1.0.8",
"ng-zorro-antd": "13.2.2",
"ngx-color-picker": "^11.0.0",
"ngx-markdown": "^12.0.1",
"nz-tslint-rules": "^0.901.2",
"p-queue": "^7.1.0",
"papaparse": "^5.2.0",
"prettier": "2.3.1",
"quicktype-core": "^6.0.70",
"semver": "^5.4.1",
"standard-version": "^4.4.0",
"subscriptions-transport-ws": "^0.9.19",
"terser-webpack-plugin": "^1.2.3",
"ts-loader": "^9.2.6",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"typescript": "4.5.5",
"utf-8-validate": "^5.0.7",
"validate-commit-msg": "^2.14.0",
"ws": "^8.2.3",
"xhr2": "^0.2.1",
"yargs": "^17.1.1",
"zone.js": "0.11.5"
},
"resolutions": {
"@types/node": "14.14.45"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"standard-version": {
"skip": {
"tag": true
}
}
}