-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
{
"name": "reikai-log",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:kmc-jp/reikai-log.git",
"author": "ryokohbato <[email protected]>",
"license": "apache-2.0",
"scripts": {
"build:esbuild": "node esbuild.js",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"build": "run-p build:esbuild typecheck",
"build:production": "NODE_ENV=production run-p build:esbuild typecheck",
"eslint": "eslint ./src/**/*.ts",
"eslint:fix": "eslint --fix ./src/*.ts",
"prettier": "prettier --check 'src/**/*.ts'",
"prettier:fix": "prettier --write 'src/**/*.ts'",
"lint": "run-s eslint prettier",
"lint:fix": "run-s eslint:fix prettier:fix",
"prepare": "husky || true",
"start": "node ./dist/reikai-log.js"
},
"devDependencies": {
"@slack/bolt": "^3.21.1",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.4.1",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"dotenv": "^16.4.5",
"esbuild": "^0.23.1",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.ts": [
"yarn eslint",
"yarn prettier"
]
}
}