forked from labnol/apps-script-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.21 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
{
"name": "apps-script-starter",
"version": "9.0.0",
"description": "Setup a local development environment for Google Apps Script with Visual Studio Code",
"author": "Amit Agarwal <[email protected]> (https://www.labnol.org)",
"homepage": "https://digitalinspiration.com/",
"license": "MIT",
"scripts": {
"watch": "webpack --watch",
"build": "webpack",
"upload": "npx clasp push",
"deploy": "npm run build && npm run upload",
"test": "jest",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/labnol/apps-script-starter.git"
},
"keywords": [
"google-apps-script",
"google-workspace"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"src/.*": "ts-jest",
"node_modules/variables/.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"src/gas/.*",
"node_modules/(?!variables/.*)"
]
},
"dependencies": {
"@types/google-apps-script": "^1.0.35",
"apps-script-oauth2": "github:googleworkspace/apps-script-oauth2"
},
"devDependencies": {
"@google/clasp": "^2.4.0",
"@jest/globals": "^27.0.6",
"@types/jest": "^26.0.23",
"@types/node": "^16.0.0",
"@types/object.fromentries": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-googleappsscript": "^1.0.4",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^2.5.4",
"gas-webpack-plugin": "^2.0.2",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2"
},
"bugs": {
"url": "https://github.com/labnol/apps-script-starter/issues"
}
}