forked from sillsdev/appbuilder-pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.81 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
{
"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 scripts/index.ts --watch\" \"vite dev --host\"",
"dev:noconvert": "vite dev --host",
"build": "ts-node scripts/index.ts && vite build",
"build:examples": "ts-node scripts/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 --plugin-search-dir=. . && eslint .",
"format": "prettier --write --plugin-search-dir=. .",
"convert": "ts-node scripts/index.ts",
"convert:watch": "ts-node scripts/index.ts --watch",
"convert:examples": "ts-node scripts/index.ts --examples",
"clean": "rimraf .svelte-kit build src/lib/data/book-collections src/config.js static/about.partial.html static/collections static/images static/fonts static/styles static/illustrations static/audio static/timings 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 data/*",
"clean:all": "npm run clean && npm run clean:data"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@sveltejs/adapter-static": "^1",
"@sveltejs/kit": "^1",
"@tailwindcss/typography": "^0.5.2",
"@types/jsdom": "^16.2.14",
"@types/node": "^17.0.41",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"autoprefixer": "^10.4.7",
"concurrently": "^7.2.2",
"daisyui": "^2.15.2",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-svelte3": "^4.0.0",
"fflate": "^0.7.4",
"idb": "^7.1.1",
"jsdom": "^19.0.0",
"postcss": "^8.4.14",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.5.0",
"proskomma-core": "0.9.14",
"proskomma-json-tools": "^0.5.7",
"proskomma-tools": "^0.0.5",
"rimraf": "^4",
"svelte": "^3",
"svelte-check": "^3",
"svelte-eslint-parser": "^0.16.3",
"svelte-french-toast": "^1.0.3",
"svelte-gestures": "^1.4.1",
"svelte-preprocess": "^4.10.6",
"tailwindcss": "^3.0.24",
"ts-node": "^10.8.1",
"typescript": "^4",
"vite": "^4"
},
"volta": {
"node": "16.17.0"
}
}