-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
91 lines (91 loc) · 2.88 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
88
89
90
91
{
"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.16.0",
"@google/clasp": "^2.4.2",
"@material/theme": "^14.0.0",
"@playwright/test": "^1.49.0",
"@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",
"@types/google-apps-script": "^1.0.86",
"@types/google.script.client-side": "^0.1.5",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.3",
"css-loader": "^7.1.2",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-perfectionist": "^4.3.0",
"eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-prefer-arrow-functions": "^3.4.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-svelte": "^2.46.0",
"gas-webpack-plugin": "^2.6.0",
"gulp": "^5.0.0",
"gulp-filter": "^9.0.1",
"gulp-replace": "^1.1.4",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"nyc": "^17.1.0",
"playwright": "^1.49.0",
"playwright-test-coverage": "^1.2.12",
"prettier": "^3.4.1",
"prettier-plugin-svelte": "^3.3.2",
"rimraf": "^6.0.1",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"svelte": "^4.2.19",
"svelte-check": "^4.1.1",
"svelte-eslint-parser": "^0.43.0",
"svelte-i18n": "^4.0.1",
"svelte-loader": "^3.2.3",
"svelte-material-ui": "^7.0.0",
"svelte-preprocess": "^6.0.2",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-plugin-istanbul": "^1.0.3",
"webpack-stream": "^7.0.0"
},
"scripts": {
"clean": "rimraf dist/*",
"prebuild": "npm run clean",
"build": "gulp build",
"lint:svelte:svelte-check": "svelte-check",
"lint:svelte": "run-p -c lint:svelte:*",
"lint:ts:eslint": "eslint \"src/**/*.svelte\" \"src/**/*.ts\" \"__tests__/**/*.ts\" gulpfile.js \"*.config.{js,ts}\"",
"lint:ts": "run-s -c lint:ts:*",
"lint": "run-s -c lint:*",
"start": "webpack serve -c test.frontend.webpack.config.js --mode development --no-client-overlay",
"test:backend": "jest",
"test:frontend": "nyc --reporter=lcov playwright test",
"test": "run-p -c test:*",
"playwright-interactive": "playwright test --ui"
}
}