-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.72 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
76
77
78
79
80
81
82
83
{
"name": "ez-clasp",
"version": "0.0.4",
"author": "cristobalgvera",
"description": "Google Apps Script starter project with TypeScript support",
"license": "MIT",
"private": true,
"main": "src/index.ts",
"engines": {
"node": ">= 16"
},
"scripts": {
"build": "rollup --config",
"build:clean": "rimraf build/",
"build:watch": "npm run build -- --watch",
"clasp:create": "rimraf .clasp.json && clasp create --rootDir . --title CHANGE_MY_NAME && prettier --write .clasp.json",
"clasp:login": "clasp login",
"deploy": "npm run check:all && npm run build && npm run push",
"format:check-all": "npm run format:check-file -- .",
"format:check-file": "prettier --check",
"format:fix-all": "npm run format:fix-file -- .",
"format:fix-file": "prettier --write",
"lint:check-all": "npm run lint:check-file -- .",
"lint:check-file": "eslint --ext ts --ext js --max-warnings 0",
"lint:fix-all": "npm run lint:check-all -- --cache --fix",
"lint:fix-file": "npm run lint:check-file -- --cache --fix",
"prepare": "husky install",
"push": "clasp push",
"push:watch": "npm run push -- --watch",
"test": "jest",
"test:cov": "npm run test -- --coverage",
"test:file": "npm run test -- --bail --findRelatedTests --passWithNoTests",
"test:watch": "npm run test -- --watch",
"check:all": "npm run lint:check-all && npm run format:check-all && npm run types:check-all && npm run test:cov",
"types:check-all": "tsc"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.0",
"@golevelup/ts-jest": "^0.4.0",
"@google/clasp": "^2.4.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.4",
"@types/eslint": "^8.44.3",
"@types/google-apps-script": "^1.0.72",
"@types/jest": "^29.5.5",
"@types/node": "^20.7.1",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"gts": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"rollup": "^3.29.4",
"rollup-plugin-dotenv": "^0.5.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"keywords": [
"clasp",
"google-apps-script",
"gas",
"typescript",
"rollup-js",
"prettier",
"eslint",
"javascript",
"babel",
"husky",
"lint-staged"
]
}