forked from skaut/shared-drive-mover
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.03 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.03 KB
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
{
"name": "shared-drive-mover",
"version": "0.1.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č",
"devDependencies": {
"@google/clasp": "^2.4.1",
"@material/theme": "^11.0.0",
"@smui/button": "^5.0.1",
"@smui/checkbox": "^5.0.1",
"@smui/data-table": "^5.0.1",
"@smui/dialog": "^5.0.1",
"@smui/form-field": "^5.0.1",
"@smui/linear-progress": "^5.0.1",
"@smui/list": "^5.0.1",
"@smui/top-app-bar": "^5.0.1",
"@types/google-apps-script": "^1.0.43",
"@types/google.script.client-side": "^0.1.0",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"css-loader": "^6.5.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-svelte3": "^3.3.0",
"gas-webpack-plugin": "^2.1.0",
"gulp": "^4.0.2",
"gulp-filter": "^7.0.0",
"gulp-replace": "^1.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.4.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"sass": "^1.39.2 <1.40",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"svelte": "^3.45.0",
"svelte-check": "^2.2.11",
"svelte-i18n": "^3.3.13",
"svelte-loader": "^3.0.0",
"svelte-preprocess": "^4.10.1",
"ts-jest": "^27.1.2",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-stream": "^7.0.0"
},
"scripts": {
"build": "gulp build",
"lint:svelte:svelte-check": "svelte-check",
"lint:svelte": "run-s -c lint:svelte:*",
"lint:ts:eslint": "eslint \"src/**/*.svelte\" \"src/**/*.ts\" \"__tests__/**/*.ts\" gulpfile.js backend.webpack.config.js frontend.webpack.config.js .eslintrc.js",
"lint:ts": "run-s -c lint:ts:*",
"lint": "run-s -c lint:*",
"test": "jest"
}
}