-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 KB
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
{
"name": "slack-status",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"author": "",
"license": "MIT",
"engines": {
"node": "^20.5.0"
},
"scripts": {
"build": "npm-run-all clean tsc",
"clean": "rimraf dist",
"format": "npm run -- prettier --write",
"lint": "eslint --ext js,jsx,ts,tsx .",
"nodemon": "nodemon --watch dist",
"prettier": "prettier --ignore-path .gitignore \"**/*.{css,html,js,jsx,json,ts,tsx,md,mdx,yml,yaml}\"",
"start": "node dist/index.js",
"dev": "npm-run-all build --parallel tsc:watch nodemon",
"test": "npm-run-all lint test:format",
"test:format": "npm run -- prettier --check",
"tsc": "tsc",
"tsc:watch": "tsc --watch"
},
"dependencies": {
"@slack/web-api": "^7.6.0",
"@types/yargs": "^17.0.10",
"dotenv": "^16.0.0",
"source-map-support": "^0.5.16",
"yargs": "^17.4.1"
},
"devDependencies": {
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"typescript": "~5.6.3"
},
"prettier": {
"trailingComma": "all"
}
}