-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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": "deps-sheet",
"version": "1.0.0",
"main": "dist/main.js",
"repository": "[email protected]:kufu/deps-sheet.git",
"author": "SmartHR",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"build": "node ./build.js",
"clasp-push": "clasp push",
"clasp-login": "clasp login",
"clasp-logout": "clasp logout",
"lint": "run-p lint:*",
"lint:eslint": "eslint './src/**/*.ts'",
"lint:prettier": "prettier --check './src/**/*.ts'",
"test": "vitest",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts}": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@google/clasp": "^2.4.2",
"@types/google-apps-script": "^1.0.83",
"@types/json2csv": "^5.0.7",
"esbuild": "^0.21.5",
"esbuild-gas-plugin": "^0.8.0",
"eslint": "^8.57.0",
"eslint-config-smarthr": "^6.32.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"prettier-config-smarthr": "^1.0.0",
"type-fest": "^4.20.1",
"vitest": "^1.6.0"
},
"dependencies": {
"dayjs": "^1.11.11",
"json2csv": "5.0.7"
}
}