-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.1 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
{
"name": "slack_app_boilerplate",
"private": true,
"main": "index.js",
"directories": {
"lib": "lib"
},
"dependencies": {
"@sentry/node": "^6.13.2",
"@sentry/tracing": "^6.13.2",
"@slack/bolt": "^3.10.0",
"@slack/web-api": "^7.0.0",
"@types/jest": "^29.0.0",
"dotenv": "^16.0.0",
"jsx-slack": "^6.0.0",
"source-map-support": "^0.5.20",
"typescript": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"nodemon": "^3.0.0",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"ts-node": "^10.0.0"
},
"scripts": {
"build": "npm run build:ts",
"build:ts": "tsc",
"watch": "tsc -w",
"start:dev": "NODE_ENV=development nodemon -r dotenv/config lib/index.js",
"fix": "npm run lint -- --write",
"lint": "npx @biomejs/biome check .",
"debug": "ts-node -r dotenv/config",
"test": "jest",
"test:ci": "jest -c ./jest.config.ci.js",
"start": "node lib/index.js",
"prepare": "husky"
},
"lint-staged": {
"*.ts": ["npm run fix"]
}
}