-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 1.22 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
{
"name": "calendar-addon",
"version": "1.0.0",
"scripts": {
"clean": "rimraf build dist",
"lint": "eslint --fix --no-error-on-unmatched-pattern src/ test/",
"format": "prettier --write src/**/*.ts",
"bundle": "rollup --no-treeshake -c rollup.config.mjs",
"build": "npm run clean && npm run bundle && ncp appsscript.json dist/appsscript.json",
"push": "npm run lint && npm run format && npm run build && ncp .clasp-dev.json .clasp.json && clasp push -f",
"push:dev": "npm run push",
"push:prod": "npm run lint && npm run format && npm run build && ncp .clasp-prod.json .clasp.json && clasp push"
},
"devDependencies": {
"@google/clasp": "^2.4.2",
"@types/google-apps-script": "^1.0.77",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"ncp": "^2.0.0",
"prettier": "3.1.0",
"rimraf": "^5.0.5",
"rollup": "^4.2.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.2.2"
}
}