-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.72 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
{
"name": "apps-script-starter",
"version": "4.20.0",
"description": "Setup a local development environment for Google Apps Script with Visual Studio Code",
"author": {
"name": "Amit Agarwal",
"email": "amit@labnol.org",
"url": "https://www.labnol.org"
},
"homepage": "https://digitalinspiration.com/",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"build": "webpack",
"upload": "clasp push",
"deploy": "npm run build && npm run upload",
"deploy:prod": "cross-env NODE_ENV=production npm run deploy",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/labnol/apps-script-starter.git"
},
"keywords": [
"google-apps-script",
"google-workspace"
],
"dependencies": {
"crypto-js": "3.1.9-1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@google/clasp": "^2.3.0",
"@types/google-apps-script": "^1.0.17",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.1",
"babel-plugin-add-module-exports": "^1.0.4",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.3.0",
"cross-env": "^7.0.2",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-googleappsscript": "^1.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"gas-webpack-plugin": "^1.2.0",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"terser-webpack-plugin": "^5.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^4.2.0"
}
}