-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.78 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
{
"name": "gas-switchbot-logger",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "MIT",
"author": "Jack Cho",
"main": "index.js",
"scripts": {
"build": "webpack",
"deploy": "yarn build && cd dist && clasp push",
"sort-deps": "yarn sort-package-json",
"lint": "run-p prettier:check lint:script",
"format": "run-p prettier:write lint:script:fix",
"lint:script": "eslint \"src/**/*.ts\"",
"lint:script:fix": "eslint --fix \"src/**/*.ts\"",
"type:check": "tsc --project tsconfig.check.json --pretty --noEmit",
"prettier:check": "prettier --check --ignore-path .gitignore \"src/**/*.ts\"",
"prettier:write": "prettier --end-of-line lf --ignore-path .gitignore --write \"src/**/*.ts\"",
"prepare": "husky install"
},
"lint-staged": {
"src/*.{js,ts}": "eslint --cache --fix",
"src/*.{js,ts,md}": "prettier --write"
},
"dependencies": {
"crypto-js": "^4.1.1"
},
"devDependencies": {
"@types/copy-webpack-plugin": "^10.1.0",
"@types/crypto-js": "^4.1.1",
"@types/google-apps-script": "^1.0.64",
"@types/webpack-bundle-analyzer": "^4.6.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"gas-webpack-plugin": "^2.5.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"sort-package-json": "^2.4.1",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"webpack": "^5.86.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4"
},
"volta": {
"node": "18.13.0",
"yarn": "1.22.19"
}
}