-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
86 lines (86 loc) · 2.67 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
{
"name": "vatsim-radar",
"version": "0.5.1-1-final",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "node .output/server/index.mjs",
"postinstall": "nuxt prepare",
"recreateDb": "npx prisma migrate diff --from-empty --to-schema-datamodel prisma/schema.prisma --script > prisma/migrations/0_init/migration.sql && rm -rf .config/db && docker compose down",
"lint:ts": "eslint .",
"lint:ts:fix": "eslint . --fix",
"stylelint": "stylelint --max-warnings=0 ./src/**/*{.css,scss,.vue}",
"stylelint:fix": "stylelint --fix ./src/**/*{.css,scss,.vue}",
"lint:fix": "yarn stylelint:fix && yarn lint:ts:fix",
"lint": "yarn stylelint && yarn lint:ts",
"typecheck": "nuxt typecheck"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.35.0",
"@influxdata/influxdb-client-apis": "^1.35.0",
"@pinia/nuxt": "^0.9.0",
"@prisma/client": "^6.0.1",
"@turf/great-circle": "^7.1.0",
"@vite-pwa/nuxt": "^0.10.6",
"adm-zip": "^0.5.16",
"aws-sdk": "^2.1692.0",
"chardet": "^2.0.0",
"cron": "^3.2.1",
"croner": "^9.0.0",
"discord.js": "^14.16.3",
"idb": "^8.0.0",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"kafkajs": "^2.2.4",
"marked": "^15.0.3",
"metar-taf-parser": "^9.0.1",
"nuxt": "^3.14.1592",
"ol": "^10.3.1",
"ol-mapbox-style": "^12.3.5",
"pinia": "^2.3.0",
"prisma": "^6.0.1",
"sharp": "^0.33.5",
"sqlite3": "^5.1.7",
"svgo": "^3.3.2",
"ua-parser-js": "2.0.0",
"vite-plugin-pwa": "^0.21.1",
"vite-svg-loader": "^5.1.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@nuxt/devtools": "^1.6.3",
"@nuxt/eslint": "^0.7.2",
"@nuxtjs/stylelint-module": "^5.2.0",
"@stylistic/eslint-plugin": "^2.11.0",
"@stylistic/stylelint-plugin": "^3.1.1",
"@types/adm-zip": "^0.5.7",
"@types/geojson": "^7946.0.15",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.1",
"@types/ws": "^8.5.13",
"eslint": "^9.16.0",
"fast-xml-parser": "^4.5.0",
"postcss": "^8.4.49",
"postcss-html": "^1.7.0",
"sass-embedded": "^1.82.0",
"stylelint": "^16.11.0",
"stylelint-config-clean-order": "^6.1.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1",
"tsx": "4.16.2",
"typescript": "5.6.3",
"vite-plugin-eslint2": "^5.0.3",
"vue-tsc": "2.1.10"
},
"resolutions": {
"vite-plugin-checker": "^0.8.0"
},
"packageManager": "[email protected]"
}