-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.33 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": "rec0-bot",
"version": "2.4.1",
"description": "A bot for revolution of comm :)",
"main": "index.js",
"scripts": {
"start": "npm run exec-ts",
"start:js": "npm run build && npm run exec",
"build": "tsc",
"exec": "node ./output/index.js",
"exec-ts": "ts-node src/index.ts",
"test": "bash -c \"source src/__tests__/env.sh && jest\"",
"lint": "eslint -c .eslintrc.js --ext .ts src"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@slack/socket-mode": "^2.0.0",
"@slack/web-api": "^7.2.0",
"cron": "^3.1.7",
"lodash": "^4.17.21",
"log4js": "^6.9.1"
},
"devDependencies": {
"@types/cron": "^2.0.1",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.5",
"@types/node": "^20.14.5",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"^.+\\.(ts)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/**/*.test.(ts|js)"
],
"preset": "ts-jest"
}
}