-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 5.51 KB
/
Copy pathpackage.json
File metadata and controls
145 lines (145 loc) · 5.51 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
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
{
"name": "@earth-app/crust",
"version": "0.6.1",
"type": "module",
"main": "./nuxt.config.ts",
"files": [
"src/components/",
"src/composables/",
"src/shared/",
"src/stores/",
"src/plugins/websocket.client.ts",
"nuxt.config.ts",
"tsconfig.json",
"LICENSE"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"scripts": {
"dev": "bunx nuxi dev --dotenv .config/local.env --no-restart --public --port 3000",
"dev:remote": "bunx nuxi dev --dotenv .config/production.env --dotenv .env --dotenv .env.local --no-restart --public --port 3000",
"dev:test": "bunx nuxi dev --dotenv .config/test.env --no-restart --port 3002 --host 127.0.0.1",
"build": "NODE_OPTIONS='--max-old-space-size=6144' nuxt build",
"build:test": "NUXT_TEST_BUILD=1 NITRO_OUTPUT_DIR=.output-e2e NODE_OPTIONS='--max-old-space-size=8192' bunx nuxi build --dotenv .config/test.env",
"start:test": "NUXT_TEST_BUILD=1 PORT=3002 HOST=127.0.0.1 node --env-file=.config/test.env .output-e2e/server/index.mjs",
"postinstall": "nuxt prepare",
"prepack": "cp nuxt.config.library.ts nuxt.config.ts",
"postpack": "git checkout nuxt.config.ts",
"prettier": "bunx prettier --write .",
"prettier:check": "bunx prettier --check .",
"prepare": "husky",
"test:e2e": "PLAYWRIGHT_PROD=1 playwright test --project=chromium --project=mobile-chromium",
"test:e2e:ui": "PLAYWRIGHT_PROD=1 playwright test --ui",
"test:e2e:coverage": "PLAYWRIGHT_PROD=1 COVERAGE=1 playwright test --project=chromium --project=mobile-chromium",
"test:e2e:integration": "PLAYWRIGHT_PROD=1 MOCK_DISABLED=1 playwright test --project=chromium --project=mobile-chromium",
"test:e2e:mobile": "PLAYWRIGHT_PROD=1 playwright test --project=mobile-chromium",
"test:e2e:mobile:webkit": "bunx playwright install webkit && PLAYWRIGHT_PROD=1 PLAYWRIGHT_WEBKIT=1 playwright test --project=mobile-webkit",
"test:e2e:debug": "playwright test",
"test:e2e:debug:ui": "playwright test --ui",
"test:e2e:debug:coverage": "COVERAGE=1 playwright test --project=chromium",
"test:e2e:debug:integration": "MOCK_DISABLED=1 playwright test",
"test:e2e:report": "playwright show-report playwright-report",
"test:coverage:report": "bun tests/e2e/utils/coverage.ts",
"test:mock-server": "bun tests/e2e/utils/mock-server.ts",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:coverage": "vitest run --coverage",
"typecheck": "bunx vue-tsc --noEmit -p .nuxt/tsconfig.app.json && bunx tsc --noEmit -p .nuxt/tsconfig.server.json && bunx tsc --noEmit -p tests/tsconfig.json && bunx vue-tsc --noEmit -p tests/unit/tsconfig.json"
},
"dependencies": {
"@internationalized/date": "^3.12.3",
"@nuxt/hints": "^1.1.4",
"@nuxt/icon": "^2.4.1",
"@nuxt/image": "^2.1.0",
"@nuxt/kit": "~4.5.2",
"@nuxt/scripts": "^1.3.3",
"@nuxt/ui": "^4.10.0",
"@nuxthub/core": "^0.10.8",
"@nuxtjs/color-mode": "^4.0.1",
"@nuxtjs/google-fonts": "^3.2.0",
"@nuxtjs/i18n": "^10.6.0",
"@nuxtjs/robots": "^6.1.4",
"@nuxtjs/sitemap": "^8.3.3",
"@nuxtjs/turnstile": "^1.1.3",
"@pinia/nuxt": "^1.0.1",
"@tailwindcss/vite": "^4.3.3",
"@tensorflow/tfjs": "^4.22.0",
"@types/luxon": "^3.7.4",
"@vueuse/core": "^14.4.0",
"@vueuse/nuxt": "^14.4.0",
"gif.js": "^0.2.0",
"html-to-image": "^1.11.13",
"jose": "^6.2.8",
"luxon": "^3.7.2",
"nsfwjs": "^4.4.0",
"nuxt": "~4.5.2",
"nuxt-api-shield": "^1.0.0",
"nuxt-schema-org": "^6.2.8",
"nuxt-viewport": "^2.6.0",
"obscenity": "^0.4.6",
"piexifjs": "^1.0.6",
"tailwindcss": "^4.3.3",
"tailwindcss-motion": "^1.1.1",
"tesseract.js": "^7.0.0",
"upng-js": "^2.1.0",
"vue": "^3.5.41",
"vue-router": "^5.2.0",
"youtube-sr": "^4.3.12",
"zod": "^4.4.3"
},
"peerDependencies": {
"@nuxt/ui": "^4.5.0",
"@nuxt/image": "^2.0.0"
},
"devDependencies": {
"@codecov/nuxt-plugin": "^2.0.1",
"@iconify-json/bx": "^1.2.3",
"@iconify-json/carbon": "^1.2.25",
"@iconify-json/cib": "^1.2.3",
"@iconify-json/circum": "^1.2.2",
"@iconify-json/eos-icons": "^1.2.4",
"@iconify-json/flowbite": "^1.2.7",
"@iconify-json/game-icons": "^1.2.4",
"@iconify-json/healthicons": "^1.2.13",
"@iconify-json/heroicons": "^1.2.3",
"@iconify-json/icon-park-outline": "^1.2.4",
"@iconify-json/lucide": "^1.2.122",
"@iconify-json/map": "^1.2.2",
"@iconify-json/material-symbols": "^1.2.88",
"@iconify-json/material-symbols-light": "^1.2.88",
"@iconify-json/mdi": "^1.2.3",
"@iconify-json/nimbus": "^1.2.1",
"@iconify-json/ph": "^1.2.2",
"@iconify-json/solar": "^1.2.5",
"@nuxt/test-utils": "^4.1.0",
"@playwright/test": "^1.62.1",
"@types/gif.js": "^0.2.5",
"@types/piexifjs": "^1.0.0",
"@types/upng-js": "^2.1.5",
"@vitest/coverage-v8": "4.1.10",
"@vue/test-utils": "^2.4.11",
"estree-walker": "3.0.3",
"happy-dom": "^20.11.2",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"monocart-reporter": "^2.12.4",
"playwright-core": "^1.62.1",
"prettier": "^3.9.6",
"prettier-plugin-organize-imports": "4.3.0",
"prettier-plugin-tailwindcss": "^0.8.1",
"v8-to-istanbul": "^9.3.0",
"vite-plugin-dts": "^5.0.3",
"vitest": "4.1.10",
"vue-tsc": "^3.3.9",
"wrangler": "^4.120.0"
},
"lint-staged": {
"*.{js,css,ts,json,html,yml,vue,md}": "prettier --write"
},
"trustedDependencies": [
"@parcel/watcher",
"@tailwindcss/oxide"
]
}