-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.18 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 3.18 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
{
"name": "appbuilder-pwa",
"version": "13.3.2",
"type": "module",
"scripts": {
"dev": "concurrently --restart-tries -1 --restart-after 10 -t HH:mm:ss -p \"[{time} {name}]\" -n Converter,Svelte \"ts-node convert/index.ts --watch\" \"vite dev --host\"",
"dev:noconvert": "vite dev --host",
"build": "npm run enforce-version && ts-node convert/index.ts && npx svelte-kit sync && vite build",
"extract:example": "tsx example/index.ts",
"package": "vite package",
"preview": "vite preview --host",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"eslint": "eslint .",
"format": "prettier --write .",
"convert": "ts-node convert/index.ts",
"convert:watch": "ts-node convert/index.ts --watch",
"sandbox": "ts-node data-sandbox/index.ts",
"clean": "rimraf .svelte-kit build src/gen-assets src/lib/data/config.js src/lib/data/catalog.js src/lib/data/firebase-config.js src/lib/data/contents.js static/illustrations static/icons static/contents static/manifest*.json && echo 🔔 Reminder: The project cannot be built until the conversion scripts are run again.",
"clean:data": "rimraf --glob data/*",
"clean:all": "npm run clean && npm run clean:data",
"test": "vitest",
"test:ui": "vitest --ui",
"enforce-version": "ts-node convert/checkVersion.ts"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@sveltejs/adapter-static": "^3",
"@sveltejs/kit": "^2.15.1",
"@tailwindcss/typography": "^0.5.2",
"@types/jsdom": "^21",
"@types/node": "^22",
"@types/sql.js": "^1.4.9",
"@types/unzipper": "^0.10.10",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"@vitest/ui": "^3.2.4",
"autoprefixer": "^10.4.7",
"concurrently": "^9.1.2",
"daisyui": "^4",
"eslint": "^9",
"eslint-config-prettier": "^9",
"eslint-plugin-prettier": "^5",
"eslint-plugin-svelte": "^2.45.1",
"fflate": "^0.8",
"firebase": "^10.12.2",
"idb": "^8",
"jsdom": "^25",
"postcss": "^8.4.14",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.2.6",
"proskomma-core": "^0.11",
"proskomma-json-tools": "^0.9",
"proskomma-tools": "^0.0.5",
"rimraf": "^6",
"sharp": "^0.34.5",
"svelte": "^5",
"svelte-check": "^4.1.1",
"svelte-eslint-parser": "^0.43",
"svelte-gestures": "5.0.7",
"svelte-preprocess": "^6",
"tailwindcss": "^3.4",
"ts-node": "^10.8.1",
"tsx": "^4.19.2",
"typescript": "^5.5.0",
"unzipper": "^0.12.3",
"vite": "^7.2.2",
"vitest": "^3.2.4"
},
"volta": {
"node": "22.21.1"
},
"dependencies": {
"sql.js": "^1.13.0"
}
}