-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
143 lines (143 loc) · 4.47 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
{
"name": "bitmap-fonts-editor",
"version": "1.0.0",
"main": "src/startup/Startup.ts",
"private": true,
"scripts": {
"ts-compile": "node scripts/build/dev.js --watch",
"ts-typecheck": "tsc --project ./tsconfig.json",
"ts-typecheck-clean": "del-cli ./tsconfig.tsbuildinfo && npm run ts-typecheck",
"serve-dev": "browser-sync start --config scripts/browser-sync/dev.js",
"serve-dev-https": "browser-sync start --config scripts/browser-sync/dev-https.js",
"serve-prod": "browser-sync start --config scripts/browser-sync/prod.js",
"build": "grunt build",
"deploy": "grunt deploy",
"print-deploy-url": "grunt print-deploy-url",
"watch-bitmap-fonts": "grunt simple-watch",
"texts-to-gsheet": "node scripts/texts/texts-to-gsheet.mjs",
"gsheet-to-texts": "node scripts/texts/gsheet-to-texts.mjs && npm run texts-to-ts",
"config-to-ts": "node scripts/config-to-ts.js",
"texts-to-ts": "json-ts ./dev/assets/texts.json --prefix 0 --rootName ILanguages --namespace texts > src/texts/ITexts.d.ts",
"polyfills": "node scripts/polyfills/create-bundle.mjs",
"polyfills-size": "node scripts/polyfills/calculate-size.mjs",
"phaser-custom": "cd scripts/phaser-custom/ && node build.mjs && cpy ./dist/ ../../dev/js/",
"compress-graphics": "grunt compress-graphics",
"compress-graphics-clear": "grunt clean:compressed_graphics && grunt compress-graphics",
"bump-build-version": "grunt update-build-version",
"clear-dotenv": "del-cli .env",
"postinstall": "node scripts/build/dev.js && node scripts/post-install.mjs",
"prepare": "husky install"
},
"engines": {
"node": "~22.5.1"
},
"config": {
"texts": {
"file": "dev/assets/texts.json",
"gsheets-credentials": "scripts/texts/gsheets-credentials.json",
"gsheets-id": "1puf3mqNDfxFqMnEkMwBq9_jmRnbXRgZWwZCw3HMNWko",
"gsheets-sheet": "Sheet1"
}
},
"author": "Vladislav Forsh",
"license": "ISC",
"dependencies": {
"@sentry/browser": "^6.1.0",
"@tweakpane/plugin-essentials": "^0.1.4",
"@types/browser-sync": "^2.26.3",
"@types/node-fetch": "^2.5.10",
"@types/path-browserify": "^1.0.0",
"dotenv": "^10.0.0",
"gameanalytics": "^4.2.0",
"get-system-fonts": "^2.0.2",
"howler": "^2.2.3",
"idb-keyval": "^6.0.3",
"lodash-es": "^4.17.21",
"notyf": "^3.10.0",
"p-retry": "^4.5.0",
"p-timeout": "^5.0.0",
"path-browserify": "^1.0.1",
"phaser": "^3.87.0",
"phaser3-rex-plugins": "^1.1.31",
"potpack": "^1.0.2",
"screenfull": "^6.0.0",
"slash": "^3.0.0",
"taze": "^0.4.6",
"ttfinfo": "^0.2.0",
"tweakpane": "^3.0.7",
"valid-filename": "3.1"
},
"devDependencies": {
"@tweakpane/core": "^1.0.8",
"@types/body-parser": "^1.19.2",
"@types/diff": "^5.0.1",
"@types/formidable": "^2.0.0",
"@types/fs-extra": "^9.0.13",
"@types/grunt": "^0.4.27",
"@types/howler": "^2.2.4",
"@types/lodash": "^4.14.171",
"@types/lodash-es": "^4.17.4",
"@types/minimist": "^1.2.1",
"@types/notyf": "^3.0.0",
"@types/opentype.js": "^1.3.3",
"@vheemstra/imagemin-avifenc": "^1.0.0",
"animate.css": "^4.1.1",
"async": "^3.2.0",
"body-parser": "^1.20.0",
"browser-sync": "^2.27.9",
"chalk": "^4.1.1",
"compression": "^1.7.4",
"core-js": "^3.17.2",
"core-js-builder": "^3.17.2",
"cpy": "^8.1.2",
"cpy-cli": "^3.1.1",
"del-cli": "^4.0.1",
"diff": "^5.0.0",
"esbuild": "^0.14.38",
"esbuild-ifdef": "^0.1.8",
"eventemitter3": "^4.0.7",
"execa": "^5.0.0",
"filesize": "^6.1.0",
"formidable": "^2.0.1",
"fs-extra": "^10.1.0",
"get-ip": "^2.0.0",
"globby": "^10.0.2",
"google-spreadsheet": "^3.0.14",
"grunt": "^1.4.1",
"grunt-commands": "^0.1.8",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-replace": "^2.0.1",
"grunt-ssh": "^0.12.9",
"grunt-template": "^1.0.0",
"grunt-zip": "^0.18.2",
"husky": "^8.0.1",
"imagemin": "^7.0.1",
"imagemin-pngquant": "^9.0.2",
"imagemin-webp": "^6.0.0",
"joi": "^17.4.0",
"json-ts": "^1.6.4",
"load-json-file": "^6.2.0",
"lodash": "^4.17.21",
"minimist": "^1.2.5",
"node-fetch": "^2.6.1",
"open": "^8.2.1",
"opentype.js": "^1.3.4",
"png-to-jpeg": "^1.0.1",
"pngquant-bin": "^7.0.2",
"prettier": "^2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"pretty-quick": "^3.1.3",
"progress": "^2.0.3",
"rev-hash": "^3.0.0",
"spreadsheet-to-json": "^2.0.0",
"ssh2": "^0.8.9",
"time-stamp": "^2.2.0",
"tmp": "^0.2.1",
"type-fest": "^2.18.0",
"typescript": "^5.0.4",
"write-json-file": "^4.3.0"
}
}