-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
70 lines (70 loc) · 2.33 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
{
"name": "genshin-dictionary",
"description": "An online Japanese-English dictionary for terms in Genshin Impact",
"license": "Apache-2.0",
"author": "Xicri (https://genshin-dictionary.com/)",
"repository": {
"type": "git",
"url": "git+https://github.com/xicri/genshin-dictionary.git"
},
"bugs": {
"url": "https://github.com/xicri/genshin-dictionary/issues"
},
"homepage": "https://genshin-dictionary.com",
"private": true,
"type": "module",
"scripts": {
"dev": "nuxt dev",
"build": "esno ./scripts/build-redirects.ts && tsup && nuxt generate",
"preview": "wrangler pages dev --local",
"test": "vitest run && playwright test",
"test:server": "wrangler pages dev --local --show-interactive-dev-session=false --port=5678",
"vrt": "concurrently --kill-others --success=first \"npm:test:server\" \"npm:vrt:screenshot\" && npm run vrt:reg",
"vrt:screenshot": "sleep 5 && esno ./scripts/vrt-screenshot.ts",
"vrt:reg": "./scripts/vrt-reg.sh",
"lint": "nuxt typecheck",
"purge-cache": "esno ./scripts/purge-cache.ts",
"update-nuxt": "nuxi upgrade --force",
"postinstall": "node ./scripts/postinstall.mjs && nuxt prepare && npm list @playwright/test && playwright install || echo 'Playwright installation skipped.'"
},
"dependencies": {
"@cloudflare/workers-types": "^4.20241230.0",
"@escapace/accept-language-parser": "^1.6.7",
"@nuxt/devtools": "^1.7.0",
"@nuxtjs/i18n": "^9.1.1",
"@nuxtjs/robots": "^4.1.11",
"@nuxtjs/sitemap": "^6.1.5",
"@pinia/nuxt": "^0.9.0",
"@types/lodash-es": "^4.17.9",
"@types/luxon": "^3.3.1",
"@types/node": "^22.10.5",
"dotenv": "^16.4.7",
"esno": "^4.8.0",
"klona": "^2.0.4",
"lodash-es": "^4.17.21",
"luxon": "^3.5.0",
"nuxt": "^3.15.1",
"pinia": "^2.2.6",
"sass": "^1.83.1",
"tsup": "^8.3.5",
"undici": "^7.2.0",
"wrangler": "^3.99.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.722.0",
"@playwright/test": "^1.49.1",
"concurrently": "^9.1.2",
"playwright": "^1.33.0",
"reg-notify-github-plugin": "^0.14.4",
"reg-publish-s3-plugin": "^0.14.4",
"reg-simple-keygen-plugin": "^0.14.2",
"reg-suit": "^0.14.3",
"vitest": "^2.1.8",
"vue-tsc": "^2.2.0",
"xml2js": "^0.6.2"
},
"engines": {
"node": "22.x",
"npm": ">=10"
}
}