-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.14 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
{
"private": true,
"devDependencies": {
"@google/clasp": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-googleappsscript": "^1.0.4",
"eslint-webpack-plugin": "^4.0.0",
"gas-webpack-plugin": "^2.3.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@types/google-apps-script": "^1.0.57"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint 'src/**/*.ts'",
"lint-fix": "eslint --fix 'src/**/*.ts'",
"format": "prettier --ignore-path .gitignore --write .",
"clean": "rm -f appsscript/*.js appsscript/*.js.map",
"build": "npx webpack",
"push": "cd appsscript && npx clasp push -f"
},
"lint-staged": {
"**/*.ts": "eslint",
"**/*": "prettier --write --ignore-unknown"
}
}