-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.57 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.57 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
{
"name": "pwa-starter",
"version": "0.0.1",
"description": "A starter kit for building PWAs!",
"type": "module",
"main": "index.js",
"scripts": {
"dev-server": "vite --port 3000",
"dev": "npm run dev-server",
"dev-task": "vite",
"build": "npm run localize:build && vite build && npm run ssr:inject",
"build:no-ssr": "npm run localize:build && vite build",
"ssr:generate": "npx tsx scripts/ssr-shells.mjs",
"ssr:inject": "npx tsx scripts/ssr-shells.mjs --inject",
"start": "npm run dev",
"start-remote": "vite --host",
"start-functions": "cd functions && npm run serve",
"bundle:analyze": "ANALYZE_BUNDLE=true npm run build",
"test": "vitest",
"test:run": "vitest run",
"coverage": "vitest run --coverage",
"test:e2e": "playwright test --config playwright.e2e.config.ts",
"test:e2e:ui": "playwright test --config playwright.e2e.config.ts --ui",
"test:e2e:headed": "playwright test --config playwright.e2e.config.ts --headed",
"lint": "eslint \"src/**/*.{ts,js}\" \"functions/src/**/*.{ts,js}\"",
"lint:fix": "eslint \"src/**/*.{ts,js}\" \"functions/src/**/*.{ts,js}\" --fix",
"format": "prettier --write \"src/**/*.{ts,js,css,html}\" \"*.{ts,js,css,html,json}\" \"functions/src/**/*.{ts,js}\"",
"test:bundle-size": "playwright test --config playwright.config.ts",
"format:check": "prettier --check \"src/**/*.{ts,js,css,html}\" \"*.{ts,js,css,html,json}\" \"functions/src/**/*.{ts,js}\"",
"localize:extract": "lit-localize extract",
"localize:build": "lit-localize build",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix --no-warn-ignored",
"prettier --write"
],
"*.{css,html,json}": [
"prettier --write"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"@capacitor/app": "^8.0.1",
"@capacitor/browser": "^8.0.2",
"@capacitor/core": "^8.2.0",
"@capacitor/haptics": "^8.0.1",
"@capacitor/push-notifications": "^8.0.2",
"@capacitor/share": "^8.0.1",
"@huggingface/transformers": "^4.1.0",
"@lit-labs/compiler": "^1.1.2",
"@lit/localize": "^0.12.2",
"@virtualstate/navigation": "^1.0.1-alpha.212",
"browser-fs-access": "^0.38.0",
"fast-blurhash": "^1.1.4",
"hotkeys-js": "^4.0.0",
"idb-keyval": "^6.2.0",
"lit": "^3.3.2",
"marked": "^17.0.1",
"urlpattern-polyfill": "^10.1.0",
"web-router": "^0.5.0"
},
"devDependencies": {
"@capacitor/android": "^8.2.0",
"@capacitor/cli": "^8.2.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"@lit-labs/ssr": "^4.0.0",
"@lit/localize-tools": "^0.8.0",
"@open-wc/testing": "^4.0.0",
"@playwright/test": "^1.50.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/dom-navigation": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"@vitest/browser": "^4.0.16",
"@vitest/browser-playwright": "^4.0.16",
"@vitest/coverage-v8": "4.0.16",
"eslint": "^9.39.1",
"eslint-plugin-lit": "^2.1.1",
"eslint-plugin-wc": "^3.0.2",
"fake-indexeddb": "^6.0.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"msw": "^2.7.0",
"playwright": "^1.57.0",
"prettier": "^3.7.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-visualizer": "^6.0.5",
"terser": "^5.44.0",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vite": "^7.3.1",
"vite-plugin-checker": "^0.12.0",
"vite-plugin-wasm": "^3.2.1",
"vitest": "^4.0.16"
}
}