-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.41 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
{
"name": "my-app",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "yarn vendor-static && yarn i18n:compile && vite dev",
"build": "yarn vendor-static && yarn i18n:compile && vite build",
"vendor-static": "cp node_modules/emoji-picker-element-data/en/emojibase/data.json static/emojis.json",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "yarn i18n:compile && vitest",
"test:e2e": "playwright test",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"i18n:extract": "node src/lib/i18n/extract.cjs",
"i18n:update": "find ./src/lib/i18n/messages -name '*.po' -print0 -exec msgmerge -U {} './src/lib/i18n/messages/messages.pot' ';'; rm -f ./src/lib/i18n/messages/*.po~",
"i18n:compile": "find ./src/lib/i18n/messages -name '*.po' -print0 -exec node src/lib/i18n/po2json.cjs -i {} -o {}.json -v ';'"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@rgglez/gettext-extractor": "^3.8.1",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-static": "^3.0.4",
"@sveltejs/kit": "^2.5.27",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@types/eslint": "^9.6.0",
"@types/node": "^22.13.4",
"@types/pouchdb": "^6.4.2",
"commander": "^11.1.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.45.1",
"gettext-parser": "^7.0.1",
"globals": "^15.0.0",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"svelte-dnd-action": "^0.9.52",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0",
"vite": "^5.4.4",
"vitest": "^2.0.0",
"workbox-precaching": "^7.3.0"
},
"type": "module",
"dependencies": {
"@iconify-json/iconamoon": "^1.1.5",
"@microsoft/fetch-event-source": "^2.0.1",
"@postalsys/gettext": "^4.0.1",
"@sentry/sveltekit": "^8",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"dompurify": "^3.1.6",
"emoji-picker-element": "^1.26.0",
"emoji-picker-element-data": "^1",
"events": "^3.3.0",
"isomorphic-dompurify": "^2.16.0",
"lodash": "^4.17.21",
"marked": "^14.1.0",
"plausible-tracker": "^0.3.9",
"rxdb": "16.3.0",
"rxjs": "^7.8.1",
"unplugin-icons": "^0.19.2"
}
}