forked from VATSIM-Radar/vatsim-radar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·73 lines (73 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·73 lines (73 loc) · 2.34 KB
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
{
"name": "nuxt-app",
"version": "0.4.2",
"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.33.2",
"@influxdata/influxdb-client-apis": "^1.33.2",
"@pinia/nuxt": "^0.5.1",
"@prisma/client": "^5.16.2",
"@turf/great-circle": "^7.0.0",
"adm-zip": "^0.5.14",
"aws-sdk": "^2.1657.0",
"chardet": "^2.0.0",
"cron": "^3.1.7",
"discord.js": "^14.15.3",
"idb": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"metar-taf-parser": "^9.0.1",
"nuxt": "^3.12.3",
"ol": "^9.2.4",
"pinia": "^2.1.7",
"prisma": "^5.16.2",
"sharp": "^0.33.4",
"sqlite3": "^5.1.7",
"svgo": "^3.3.2",
"ua-parser-js": "2.0.0-beta.3",
"vite-svg-loader": "^5.1.0",
"vue": "^3.4.31",
"vue-router": "^4.4.0"
},
"devDependencies": {
"@nuxt/devtools": "^1.3.9",
"@nuxt/eslint": "^0.3.13",
"@nuxtjs/stylelint-module": "^5.2.0",
"@stylistic/eslint-plugin": "^2.3.0",
"@stylistic/stylelint-plugin": "^2.1.2",
"@types/adm-zip": "^0.5.5",
"@types/geojson": "^7946.0.14",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.10",
"eslint": "^9.6.0",
"postcss": "^8.4.39",
"postcss-html": "^1.7.0",
"sass": "^1.77.6",
"stylelint": "^16.6.1",
"stylelint-config-clean-order": "^6.1.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "5.5.3",
"vite-plugin-eslint2": "^4.4.0",
"vue-component-type-helpers": "^2.0.26",
"vue-tsc": "^2.0.26"
},
"packageManager": "yarn@4.3.1"
}