This repository has been archived by the owner on Aug 20, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
179 lines (179 loc) · 7.48 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
{
"name": "landoftherair",
"version": "0.2.73",
"description": "a prototype morpg",
"main": "index.js",
"scripts": {
"start": "npm-run-all --parallel start:client start:server:single",
"start:server:plain": "ts-node src/server/index.ts",
"start:server:plain:debug": "node --inspect -r ts-node/register src/server/index.ts --single-core",
"start:server": "nodemon --ignore \"client/\" --ignore \"dist/*\" --ignore \"*.json\" --exec \"ts-node \" -- \"src/server/index.ts\"",
"start:server:single": "nodemon --ignore \"client/\" --ignore \"dist/*\" --ignore \"*.json\" --exec \"ts-node \" -- \"src/server/index.ts\" --single-core",
"start:server:single:debug": "nodemon --ignore \"client/\" --ignore \"dist/*\" --ignore \"*.json\" --exec \"node --inspect -r ts-node/register \" -- \"src/server/index.ts\" --single-core",
"start:client": "ng serve -o --host 0.0.0.0 --port 4567 --disable-host-check",
"start:client:static": "npm run build && npm run start:client:static:only",
"start:client:static:only": "http-server -o -p 4567 ./dist",
"build": "ng build",
"build:netlify": "npm run postinstall && npm run build:prod",
"prebuild:prod": "node scripts/prebuild-client",
"build:prod": "ng build --configuration=fakeprod",
"deploy": "npm run test:local && git push && npm run prod:server && npm run prod:deploy",
"deploy:full": "npm run test:local && npm run autogenerated && npm run autogenerated:commit && git push && npm run prod:server && npm run prod:deploy",
"deploy:patch": "npm run deploy:full && npm run bump:patch",
"deploy:minor": "npm run deploy:full && npm run bump:minor",
"deploy:major": "npm run deploy:full && npm run bump:major",
"prod:server": "node scripts/compile",
"prod:deploy": "node scripts/deploy",
"prod:start": "node dist/server/index",
"prod:start:debug": "DEBUG=colyseus:matchmaking node dist/server/index",
"prod:start:debug:all": "DEBUG=colyseus:* node dist/server/index",
"postinstall": "node scripts/postinstall-assets",
"lint": "npm run lint:client && npm run lint:server",
"lint:client": "ng lint",
"lint:server": "tslint --project tsconfig.json",
"test:unit": "ava-ts src/**/*.test.ts",
"test:lint": "npm run lint",
"test:local": "npm run test:unit && npm run test:lint",
"test": "npm run test:local && npm run build:prod && npm run task:seed",
"setup": "npm run postinstall && npm run task:seed && npm run task:macros && npm run autogenerated && npm run prebuild:prod",
"seed:items": "ts-node src/server/tasks/items.ts",
"seed:npcs": "ts-node src/server/tasks/npcs.ts",
"seed:drops": "ts-node src/server/tasks/drops.ts",
"seed:recipes": "ts-node src/server/tasks/recipes.ts",
"seed:lore": "ts-node src/server/tasks/lore.ts",
"task:seed": "npm-run-all seed:*",
"task:macros": "npm-run-all task:macros:*",
"task:macros:data": "ts-node src/server/tasks/macroiconnames.ts",
"task:macros:meta": "ts-node src/server/tasks/macrometadata.ts",
"task:macros:font": "webfont -f macicons -t css -d src/client/macicons src/client/assets/icons/*.svg",
"task:skilltrees": "ts-node src/server/tasks/skilltrees.ts",
"task:allsprites": "ts-node src/server/tasks/analysis/allsprites",
"task:wikidocs": "ts-node src/server/tasks/wikidocs.ts",
"task:analysis": "npm-run-all analyze:*",
"analyze:weapons": "ts-node src/server/tasks/analysis/weapons",
"analyze:armor": "ts-node src/server/tasks/analysis/armor",
"analyze:premium": "ts-node src/server/tasks/analysis/premium",
"analyze:spawners": "ts-node src/server/tasks/analysis/spawner-heatmap",
"analyze:skilltrees": "ts-node src/server/tasks/analysis/skilltrees",
"analyze:progression": "ts-node src/server/tasks/analysis/item-progression",
"runseed:prod": "npm-run-all \"seed:* -- --prod\"",
"bump:patch": "npm version patch -m \"Patch release %s\"",
"bump:minor": "npm version minor -m \"Minor release %s\"",
"bump:major": "npm version major -m \"Major release %s\"",
"autogenerated": "node scripts/autogenerated-create",
"autogenerated:commit": "git commit src/shared/generated/**/* -m \"Update autogenerated files. [skip ci]\"",
"postversion": "git push --follow-tags && npm run task:wikidocs",
"changelog": "gren changelog --generate --tags=all -u landoftherair -r landoftherair -o -D issues -f wiki/Change-Log.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/landoftherair/landoftherair.git"
},
"engines": {
"node": "10.9.0"
},
"author": "Kyle Kemp <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/landoftherair/landoftherair/issues"
},
"homepage": "https://github.com/landoftherair/landoftherair#readme",
"dependencies": {
"@angular/cdk": "6.4.7",
"@angular/common": "6.1.8",
"@angular/compiler": "6.1.8",
"@angular/core": "6.1.8",
"@angular/forms": "6.1.8",
"@angular/http": "6.1.8",
"@angular/platform-browser": "6.1.8",
"@angular/platform-browser-dynamic": "6.1.8",
"@angular/router": "6.1.8",
"angular-resizable-element": "^3.2.2",
"angular-rollbar": "^0.1.3",
"angular-walkthrough": "^0.5.6",
"angular2-virtual-scroll": "^0.4.14",
"auth0-js": "^9.8.0",
"body-parser": "^1.18.2",
"bootstrap": "^4.0.0-beta",
"buffer": "^5.2.1",
"censor-sensor": "^1.0.3",
"cli-table": "^0.3.1",
"colyseus": "0.9.18",
"colyseus.js": "0.9.14",
"connect-static-file": "^1.2.0",
"core-js": "^2.4.1",
"cors": "^2.8.3",
"d3": "4.13.0",
"debounce-decorator": "1.0.6",
"dice.js": "^0.9.3",
"discord.js": "11.3.0",
"dotenv": "4.0.0",
"download-github-repo": "0.1.4",
"express": "4.15.3",
"express-rate-limit": "2.11.0",
"fantastical": "1.0.1",
"file-saver": "1.3.3",
"gameanalytics-node-sdk": "^1.0.12",
"git-describe": "4.0.2",
"jsonwebtoken": "^7.4.1",
"jwks-rsa": "^1.2.1",
"linkifyjs": "^2.1.4",
"lodash": "^4.17.4",
"lootastic": "^1.1.1",
"luxon": "^0.2.11",
"mingy": "^0.2.7",
"minimist": "^1.2.0",
"mongodb": "^2.2.27",
"mrpas": "^1.2.1",
"ng-drag-drop": "5.0.0",
"ngx-bootstrap": "3.0.1",
"ngx-color-picker": "6.7.0",
"ngx-webstorage": "2.0.1",
"node-cache": "4.2.0",
"node-redis-pubsub": "1.0.3",
"node-schedule": "1.2.3",
"nonenumerable": "1.1.0",
"pathfinding": "^0.4.18",
"phaser-camera-offset": "1.0.1",
"phaser-ce": "2.8.0",
"phaser-tiled": "2.0.4",
"process-stats": "2.0.0",
"rbush": "^2.0.2",
"recursive-readdir": "2.2.1",
"restricted-number": "2.1.0",
"rollbar": "2.4.7",
"roman-numerals": "0.3.2",
"rxjs": "6.3.2",
"signals.js": "^1.0.1-alpha.3",
"stripe": "5.4.0",
"sweetalert2": "6.10.2",
"ts-node": "^5.0.0",
"uuid": "3.1.0",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.8.3",
"@angular/cli": "6.2.3",
"@angular/compiler-cli": "6.1.8",
"@types/file-saver": "^1.3.0",
"@types/jasmine": "2.5.38",
"@types/lodash": "^4.14.116",
"@types/node": "~6.0.60",
"@types/node-schedule": "^1.2.2",
"@types/uuid": "^3.4.3",
"ava-ts": "0.25.2",
"codelyzer": "^4.4.4",
"fs-extra": "^4.0.2",
"github-release-notes": "^0.15.0",
"http-server": "^0.11.1",
"md5-file": "^3.2.3",
"nodemon": "^1.18.7",
"npm-run-all": "^4.1.5",
"pngjs": "^3.3.2",
"tslint": "5.5.0",
"typescript": "2.9.2",
"webfont": "^7.1.4",
"webpack": "4.19.1",
"yamljs": "^0.2.10"
}
}