-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.84 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
{
"name": "allhands",
"version": "0.0.1",
"description": "Google Apps Script project to generate all hands meeting sheets from Linear",
"homepage": "",
"main": "build/index.js",
"license": "MIT",
"keywords": [
"gas",
"google-apps-script",
"clasp"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint --fix src/**/*.ts && prettier --write src/**/*.ts",
"test": "jest --passWithNoTests",
"bundle": "rollup --no-treeshake -c rollup.config.mjs",
"build": "npm run lint && npm run test && npm run clean && npm run bundle && cpx src/appsscript.json dist",
"push": "npm run build && clasp push"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@rollup/plugin-graphql": "^2.0.4",
"@rollup/plugin-json": "^6.1.0",
"@types/google-apps-script": "^1.0.50",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"cpx": "^1.5.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"gts": "^5.2.0",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"rollup": "^4.9.6",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-license": "^3.5.2",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(src/.+(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}