-
Notifications
You must be signed in to change notification settings - Fork 180
/
package.json
60 lines (60 loc) · 1.85 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
{
"name": "apps-script-starter",
"version": "12.3.0",
"description": "Setup a local development environment for Google Apps Script with Visual Studio Code",
"author": "Amit Agarwal <amit@labnol.org> (https://www.labnol.org)",
"homepage": "https://digitalinspiration.com/",
"license": "MIT",
"scripts": {
"watch": "webpack --watch",
"build": "webpack",
"format": "prettier --write dist/code.js",
"postbuild": "npm run format",
"upload": "npx clasp push",
"deploy": "npm run build && npm run upload",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/labnol/apps-script-starter.git"
},
"keywords": [
"google-apps-script",
"google-workspace"
],
"dependencies": {
"apps-script-oauth2": "github:googleworkspace/apps-script-oauth2"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@google/clasp": "^2.4.2",
"@types/google-apps-script": "^1.0.83",
"@types/google-apps-script-oauth2": "^38.0.4",
"@types/google.picker": "^0.0.42",
"@types/jest": "^29.5.12",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-googleappsscript": "^1.0.5",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-webpack-plugin": "^4.2.0",
"gas-webpack-plugin": "^2.6.0",
"jest": "^29.7.0",
"npm-watch": "^0.13.0",
"prettier": "^3.3.2",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"bugs": {
"url": "https://github.com/labnol/apps-script-starter/issues"
}
}