-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.42 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
{
"name": "@sa-sel/adm-minutes",
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"clasp": "scripts/setup-clasp.sh",
"submodules": "scripts/init-submodules.sh",
"prepare": "npm run clasp; husky install",
"rollup": "rollup --config .rollup.js",
"build": "scripts/build.sh",
"format": "eslint . --fix --quiet; prettier --write .",
"lint": "eslint . && prettier --check .",
"push": "scripts/push.sh"
},
"dependencies": {
"@sa-sel/lib": "file:src/lib"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.21.0",
"@google/clasp": "^2.4.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/google-apps-script": "^1.0.53",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.0.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.6.2",
"rollup": "^3.20.2",
"rollup-plugin-html": "^0.2.1",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^5.0.2"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,css,md,scss,ts,html,yaml,yml,json}": "prettier --write --cache"
}
}