-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
71 lines (71 loc) · 3.04 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
71
{
"name": "appbuilder-pwa",
"version": "0.0.1",
"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": "ts-node convert/index.ts && vite build",
"build:examples": "ts-node convert/index.ts --examples && vite build",
"package": "vite package",
"preview": "vite preview --host",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "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",
"convert:examples": "ts-node convert/index.ts --examples",
"sandbox": "ts-node data-sandbox/index.ts",
"clean": "rimraf .svelte-kit build src/lib/data/config.js src/lib/data/catalog.js src/lib/data/firebase-config.js src/lib/data/contents.js static/about.partial.html static/assets static/badges static/clips static/collections static/images static/fonts static/styles static/illustrations static/watermarks static/audio static/timings static/videos static/backgrounds static/icons static/borders 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"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@sveltejs/adapter-static": "^3",
"@sveltejs/kit": "^2",
"@tailwindcss/typography": "^0.5.2",
"@types/jsdom": "^21",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"@vitest/ui": "^2",
"autoprefixer": "^10.4.7",
"concurrently": "^8",
"daisyui": "^4",
"eslint": "^9",
"eslint-config-prettier": "^9",
"eslint-plugin-prettier": "^5",
"eslint-plugin-svelte": "^2",
"fflate": "^0.8",
"firebase": "^10.12.2",
"idb": "^8",
"jsdom": "^24",
"postcss": "^8.4.14",
"prettier": "^3",
"prettier-plugin-svelte": "^3",
"proskomma-core": "0.10.13",
"proskomma-json-tools": "^0.8.4",
"proskomma-tools": "^0.0.5",
"rimraf": "^6",
"svelte": "^4",
"svelte-check": "^3",
"svelte-eslint-parser": "^0.41",
"svelte-french-toast": "^1.0.3",
"svelte-gestures": "^5",
"svelte-preprocess": "^6",
"tailwindcss": "^3.4",
"ts-node": "^10.8.1",
"typescript": "^5",
"vite": "^5",
"vitest": "^2"
},
"volta": {
"node": "20.9.0"
}
}