-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
87 lines (87 loc) · 3.37 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "shared-drive-mover",
"version": "28.0.0",
"description": "Move files from regular Google Drive to a Shared Drive",
"keywords": [
"google",
"google drive",
"drive",
"shared drive",
"move",
"skaut"
],
"license": "MIT",
"author": "Marek Dědič",
"type": "module",
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@eslint/js": "^9.21.0",
"@google/clasp": "^2.5.0",
"@inlang/paraglide-js": "2.0.0-beta.18",
"@material/theme": "^14.0.0",
"@playwright/test": "^1.50.1",
"@smui/button": "^8.0.0-beta.3",
"@smui/checkbox": "^8.0.0-beta.3",
"@smui/data-table": "^8.0.0-beta.3",
"@smui/dialog": "^8.0.0-beta.3",
"@smui/form-field": "^8.0.0-beta.3",
"@smui/linear-progress": "^8.0.0-beta.3",
"@smui/list": "^8.0.0-beta.3",
"@smui/top-app-bar": "^8.0.0-beta.3",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@types/google-apps-script": "^1.0.97",
"@types/google.script.client-side": "^0.1.5",
"@types/node": "^22.13.5",
"@vitest/coverage-v8": "^3.0.8",
"@vitest/eslint-plugin": "^1.1.25",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-perfectionist": "^4.10.1",
"eslint-plugin-playwright": "^2.2.0",
"eslint-plugin-prefer-arrow-functions": "^3.6.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-svelte": "^2.46.1",
"npm-run-all": "^4.1.5",
"nyc": "^17.1.0",
"playwright": "^1.49.1",
"playwright-test-coverage": "^1.2.12",
"prettier": "^3.5.2",
"prettier-plugin-svelte": "^3.3.3",
"rimraf": "^6.0.1",
"sass": "^1.85.1",
"svelte": "^5.22.6",
"svelte-check": "^4.1.4",
"svelte-eslint-parser": "^1.0.1",
"svelte-material-ui": "^8.0.0-beta.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.0",
"vite-plugin-singlefile": "^2.2.0",
"vitest": "^3.0.8"
},
"scripts": {
"clean": "rimraf dist/*",
"prebuild": "npm run clean",
"paraglide": "rimraf src/frontend/paraglide/ && paraglide-js compile --project \"./project.inlang\" --outdir \"./src/frontend/paraglide\"",
"build:appsscript": "mkdir -p dist && cp src/appsscript.json dist/",
"build:backend": "vite build --config backend.vite.config.ts",
"prebuild:frontend": "npm run paraglide",
"build:frontend": "vite build --config frontend.vite.config.ts",
"build": "run-p -c build:*",
"lint:svelte:svelte-check": "FORCE_COLOR=1 svelte-check",
"lint:svelte": "run-p -c --aggregate-output lint:svelte:*",
"lint:ts:typecheck:backend": "tsc --noEmit --project backend.tsconfig.json",
"lint:ts:typecheck:frontend": "tsc --noEmit --project frontend.tsconfig.json",
"lint:ts:typecheck": "run-p -c --aggregate-output lint:ts:typecheck:*",
"lint:ts:eslint": "eslint --color \"src/**/*.svelte\" \"src/**/*.ts\" \"tests/**/*.ts\" \"*.config.{js,ts}\"",
"lint:ts": "run-p -c --aggregate-output lint:ts:*",
"prelint": "npm run paraglide",
"lint": "run-p -c --aggregate-output lint:*",
"start": "vite --config frontend.vite.config.ts",
"test:backend": "vitest --config backend.vite.config.ts",
"pretest:frontend": "npm run paraglide",
"test:frontend": "nyc --reporter=lcov playwright test",
"test-coverage:backend": "vitest run --coverage --config backend.vite.config.ts",
"playwright-interactive": "playwright test --ui"
}
}