forked from Carleton-Blueprint/bluebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 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
{
"name": "bluebot",
"version": "1.0.0",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts",
"format": "prettier --check '**/*.{js,jsx,ts,tsx,json,css,md}'",
"format:fix": "prettier --write '**/*.{js,jsx,ts,tsx,json,css,md}'",
"dev": "nodemon --watch '**/*' --exec 'ts-node' src/index.ts",
"build": "npm run lint && npm run format && tsc",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/lodash": "^4.17.10",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"eslint": "^8.57.1",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"smee-client": "^2.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"fast-glob": "^3.3.2",
"lodash": "^4.17.21",
"probot": "^13.3.8",
"winston": "^3.15.0"
}
}