-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
83 lines (83 loc) · 3.03 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
{
"name": "shared-drive-mover",
"version": "23.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.18.0",
"@google/clasp": "^2.4.2",
"@material/theme": "^14.0.0",
"@playwright/test": "^1.49.1",
"@smui/button": "^7.0.0",
"@smui/checkbox": "^7.0.0",
"@smui/data-table": "^7.0.0",
"@smui/dialog": "^7.0.0",
"@smui/form-field": "^7.0.0",
"@smui/linear-progress": "^7.0.0",
"@smui/list": "^7.0.0",
"@smui/top-app-bar": "^7.0.0",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@types/google-apps-script": "^1.0.91",
"@types/google.script.client-side": "^0.1.5",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/eslint-plugin": "^1.1.25",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-perfectionist": "^4.6.0",
"eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-prefer-arrow-functions": "^3.6.2",
"eslint-plugin-prettier": "^5.2.1",
"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.4.2",
"prettier-plugin-svelte": "^3.3.2",
"rimraf": "^6.0.1",
"sass": "^1.83.1",
"svelte": "^4.2.19",
"svelte-check": "^4.1.1",
"svelte-eslint-parser": "^0.43.0",
"svelte-i18n": "^4.0.1",
"svelte-material-ui": "^7.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"vite": "^5.4.11",
"vite-plugin-singlefile": "^2.1.0",
"vitest": "^2.1.8"
},
"scripts": {
"clean": "rimraf dist/*",
"prebuild": "npm run clean",
"build:appsscript": "mkdir -p dist && cp src/appsscript.json dist/",
"build:backend": "vite build --config backend.vite.config.ts",
"build:frontend": "vite build --config frontend.vite.config.ts",
"build": "run-s -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:*",
"lint": "run-p -c --aggregate-output lint:*",
"start": "vite --config frontend.vite.config.ts",
"test:backend": "vitest --config backend.vite.config.ts",
"test:frontend": "nyc --reporter=lcov playwright test",
"test-coverage:backend": "vitest run --coverage --config backend.vite.config.ts",
"playwright-interactive": "playwright test --ui"
}
}