-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.56 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
{
"name": "apps-script-starter",
"private": true,
"version": "0.1.0",
"type": "module",
"files": [
"dist",
"types"
],
"scripts": {
"clean": "rm -rf build && rm -rf dist",
"manifest": "cp appsscript.json dist/",
"manifest:watch": "chokidar --initial appsscript.json -c \"cp {path} dist/\"",
"build": "rollup -c && npm run manifest",
"build:watch": "rollup -c --watch",
"deploy": "npx @google/clasp push -f",
"deploy:dev": "npx @google/clasp push -f -P .clasp.dev.json",
"deploy:dev:watch": "npx @google/clasp push -f -P .clasp.dev.json --watch",
"watch": "npx concurrently \"npm:manifest:watch\" \"npm:build:watch\" \"npm:deploy:dev:watch\"",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"dependencies": {
"lit": "^2.4.0",
"popup-centered": "^1.2.0"
},
"devDependencies": {
"@google/clasp": "^2.4.2",
"@material/mwc-button": "^0.27.0",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/google-apps-script": "^1.0.56",
"@types/google-apps-script-oauth2": "^38.0.0",
"@types/google.script.client-side": "^0.1.1",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"@web/rollup-plugin-html": "^1.11.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^7.5.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"glob": "^8.0.3",
"rollup": "^3.2.5",
"type-fest": "^3.2.0",
"typescript": "^4.6.4"
}
}