-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 4.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
{
"name": "world-seller",
"description": "who knows",
"version": "0.2.3",
"author": "Kyle Kemp <kyle@seiyria.com>",
"scripts": {
"ng": "ng",
"start": "ng serve -o --port 9335",
"start:electron": "wait-on http://localhost:9335/ && cd electron && npm start",
"start:both": "concurrently --kill-others -n angular,electron \"npm start\" \"npm run start:electron\"",
"build": "ng build --configuration production && npm run build:copypost",
"build:electron": "npm run build && npm run syncversion && cd electron && npm run make",
"build:netlify": "npm run load:content && npm run buildvars && npm run build",
"build:copypost": "cpy CHANGELOG.md CHANGELOG-current.md CONTENT.md MODDING.md www/assets",
"buildvars": "ts-node scripts/buildvars",
"blogpost:generate": "ts-node scripts/blog-version-notes",
"changelog:generate": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:generate:current": "conventional-changelog -p angular -o CHANGELOG-current.md -r 2",
"changelog:commit": "git commit CHANGELOG.md CHANGELOG-current.md -m \"Update changelog\" || true",
"watch": "ng build --watch --configuration development",
"lint": "ng lint && npm run validate",
"load:content": "ts-node scripts/content",
"validate": "npm run validate:svgs && npm run validate:items",
"validate:svgs": "ts-node scripts/svg-validate",
"validate:items": "ts-node scripts/item-validate",
"syncversion": "ts-node scripts/syncversion",
"dirtycheck": "ts-node scripts/dirtycheck",
"preversion": "npm run dirtycheck && npm run lint && npm run build",
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && npm run syncversion",
"postversion": "npm run changelog:generate && npm run changelog:generate:current && npm run changelog:commit && npm run version:reversion && npm run push",
"version:reversion": "ts-node scripts/postversion.reversion",
"push": "git push && git push --tags",
"bump:patch": "npm version patch -m \"chore(release): Patch %s\"",
"bump:minor": "npm version minor -m \"chore(release): Minor %s\"",
"bump:major": "npm version major -m \"chore(release): Major %s\""
},
"private": true,
"dependencies": {
"@angular/cdk": "^15.2.1",
"@angular/common": "^15.0.0",
"@angular/core": "^15.0.0",
"@angular/fire": "^7.5.0",
"@angular/forms": "^15.0.0",
"@angular/platform-browser": "^15.0.0",
"@angular/platform-browser-dynamic": "^15.0.0",
"@angular/router": "^15.0.0",
"@angular/service-worker": "^15.0.0",
"@ionic/angular": "^6.1.9",
"@ngxs/devtools-plugin": "^3.7.6",
"@ngxs/logger-plugin": "^3.7.6",
"@ngxs/storage-plugin": "^3.7.6",
"@ngxs/store": "^3.7.6",
"@seiyria/ngxs-attach-action": "^0.1.3",
"@zip.js/zip.js": "^2.6.78",
"angular-svg-icon": "^15.0.0",
"buffer": "^6.0.3",
"fantastical": "^2.0.1",
"fs-extra": "^11.1.0",
"gameanalytics": "^4.4.5",
"howler": "^2.2.3",
"ionicons": "^6.0.3",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"marked": "^4.2.12",
"ngx-tippy-wrapper": "^6.0.0",
"ngx-webstorage": "^11.1.1",
"notiflix": "^3.2.5",
"recursive-readdir": "^2.2.3",
"rollbar": "^2.26.1",
"rss-parser": "^3.12.0",
"rxjs": "~7.5.0",
"seedrandom": "^3.0.5",
"tslib": "^2.3.0",
"uuid": "^9.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.0",
"@angular-eslint/builder": "^14.0.0",
"@angular-eslint/eslint-plugin": "^14.0.0",
"@angular-eslint/eslint-plugin-template": "^14.0.0",
"@angular-eslint/template-parser": "^14.0.0",
"@angular/cli": "^15.0.0",
"@angular/compiler": "^15.0.0",
"@angular/compiler-cli": "^15.0.0",
"@angular/language-service": "^15.0.0",
"@ionic/angular-toolkit": "^6.0.0",
"@types/howler": "^2.2.7",
"@types/lodash": "^4.14.191",
"@types/marked": "^4.0.8",
"@types/node": "^12.11.1",
"@types/seedrandom": "^3.0.4",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"concurrently": "^7.6.0",
"conventional-changelog-cli": "^2.2.2",
"cpy-cli": "^4.2.0",
"eslint": "^8.29.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-prefer-arrow": "1.2.2",
"eslint-plugin-unused-imports": "^2.0.0",
"git-describe": "^4.1.1",
"ts-node": "~8.3.0",
"typescript": "~4.8.4",
"wait-on": "^7.0.1"
}
}