-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.36 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
{
"name": "chatbots",
"version": "1.0.0",
"description": "Chatbots for Google Chat",
"scripts": {
"prepare": "husky install",
"prebuild": "rimraf dist",
"build": "rollup -c",
"lint": "eslint bots --ext .ts,.tsx,.js,.jsx",
"lint:fix": "npm run lint -- --fix",
"lint-staged": "eslint $(git diff --cached --name-only --diff-filter=ACMRTUXB | grep -E '\\.(ts|tsx|js|jsx)$') --ext .ts,.tsx,.js,.jsx",
"lint-staged:fix": "npm run lint-staged -- --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"test:mutate": "stryker run"
},
"devDependencies": {
"@rollup/plugin-replace": "^5.0.2",
"@stryker-mutator/core": "^7.0.2",
"@stryker-mutator/jest-runner": "^7.0.2",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-github": "^4.7.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unicorn": "^46.0.0",
"glob": "^10.2.6",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"rimraf": "^5.0.1",
"rollup": "^3.23.0"
},
"license": "MIT",
"dependencies": {
"@slack/bolt": "^3.14.0",
"dotenv": "^16.3.1",
"luxon": "^3.3.0"
}
}