forked from beyond-all-reason/bar-lobby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.99 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
{
"name": "bar-lobby",
"version": "0.10.1",
"private": true,
"description": "Lobby client for the RTS game Beyond All Reason",
"author": "Jazcash <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/beyond-all-reason/bar-lobby.git"
},
"main": "index.js",
"scripts": {
"dev": "vue-cli-service electron:serve",
"build": "cross-env NODE_ENV=production npm run clean-dist && vue-cli-service electron:build",
"tidy": "npm run lint && npm run format",
"lint-check": "eslint . --ext .ts,.vue",
"lint": "eslint . --ext .ts,.vue --fix",
"format-check": "prettier --check src/**/*.{ts,vue,scss,json}",
"format": "prettier --write src/**/*.{ts,vue,scss,json}",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"clean-dist": "rimraf dist_electron",
"dump-webpack-config": "vue inspect > output.js",
"preversion": "npm run lint-check && npm run format-check",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@iconify-icons/mdi": "^1.2.14",
"@iconify/json": "^1.1.420",
"@iconify/vue": "^3.2.1",
"@sinclair/typebox": "^0.23.5",
"@types/better-sqlite3": "^7.6.0",
"@types/electron-devtools-installer": "^2.2.0",
"@types/howler": "^2.2.4",
"@types/luaparse": "^0.2.8",
"@types/node-7z": "^2.1.4",
"@types/uuid": "^8.3.1",
"@vue/cli": "^5.0.0-rc.2",
"@vue/cli-plugin-router": "^5.0.0-rc.2",
"@vue/cli-plugin-typescript": "^5.0.0-rc.2",
"@vue/cli-service": "^5.0.0-rc.2",
"@vue/compiler-sfc": "^3.2.29",
"@vueuse/core": "^9.2.0",
"ajv": "^8.7.1",
"axios": "^0.24.0",
"bar-db": "^6.3.0",
"cross-env": "^7.0.3",
"date-fns": "^2.29.1",
"electron": "^16.2.6",
"electron-devtools-installer": "^3.1.0",
"electron-unhandled": "^3.0.2",
"electron-updater": "^4.6.1",
"flag-icons": "^6.1.1",
"glob-promise": "^4.2.2",
"howler": "^2.2.3",
"jaz-ts-utils": "^4.2.0",
"luaparse": "^0.3.1",
"node-7z": "^3.0.0",
"node-json-db": "^1.6.0",
"octokit": "^1.7.1",
"prettier": "^2.6.2",
"primevue": "^3.16.2",
"rimraf": "^3.0.2",
"sass": "^1.52.1",
"sass-loader": "^13.0.0",
"spring-map-parser": "^4.6.0",
"sqlite": "^4.1.1",
"sqlite3": "^5.0.8",
"tachyon-client": "^4.1.8",
"tsconfig-paths": "^3.12.0",
"type-fest": "^2.12.2",
"typescript": "^4.6.4",
"uuid": "^8.3.2",
"vue": "^3.2.37",
"vue-auto-routing": "^1.0.1",
"vue-cli-plugin-auto-routing": "^1.3.0",
"vue-cli-plugin-electron-builder": "^3.0.0-alpha.4",
"vue-i18n": "^9.2.2",
"vue-router": "^4.0.16",
"vue3-markdown-it": "^1.0.9",
"vue3-popper": "^1.4.1",
"worker-plugin": "^5.0.1"
},
"dependencies": {
"better-sqlite3": "^7.6.2",
"electron-rebuild": "^3.2.9",
"env-paths": "^3.0.0",
"kysely": "^0.21.6",
"primeicons": "^6.0.1",
"sdfz-demo-parser": "^5.4.1",
"steamworks.js": "0.0.21"
}
}