-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.67 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.67 KB
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
{
"name": "gas-project",
"version": "1.0.0",
"description": "Google Apps Script project with TypeScript, Rollup, and Clasp",
"private": true,
"type": "module",
"scripts": {
"build": "rimraf dist && rollup -c && cp appsscript.json dist/",
"build:watch": "mkdir -p dist && cp appsscript.json dist/ && rollup -c --watch",
"deploy": "npm run build && clasp push",
"deploy:watch": "npm-run-all --parallel build:watch push:watch",
"push:watch": "clasp push --watch",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"typecheck": "tsc --noEmit && tsc -p tsconfig.client.json --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"clasp:login": "clasp login",
"clasp:open": "clasp open-script",
"clasp:logs": "clasp open-logs",
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@google/clasp": "^3.3.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.0",
"@types/google-apps-script": "^1.0.83",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.3.0",
"lint-staged": "^16.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.0",
"rimraf": "^6.0.0",
"rollup": "^4.30.0",
"ts-jest": "^29.2.0",
"tslib": "^2.8.0",
"typescript": "^5.7.0"
}
}