-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 1.96 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "octo-goodday-server",
"version": "0.0.1",
"description": "A Good Day Slack bot",
"main": "index.js",
"author": "Github OCTO",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"husky": {
"hooks": {
"pre-commit": "run-s build lint:staged"
}
},
"lint-staged": {
"src/**/*.{js,ts}": [
"npm run prettier:fix",
"npm run lint:fix"
]
},
"nodemonConfig": {
"delay": "400"
},
"scripts": {
"dev": "npm-run-all -l build -p build:watch start:watch",
"start": "node dist/index.js",
"start:watch": "NODE_ENV=development nodemon -w dist -e js dist/index.js",
"build": "tsc -p tsconfig.json --pretty",
"build:watch": "npm run build -- -w",
"lint": "eslint \"src/**/*.ts\" --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"lint:staged": "lint-staged",
"prettier": "prettier -l \"src/**/*.ts\"",
"prettier:fix": "npm run prettier -- --write"
},
"dependencies": {
"@octokit/rest": "^18.5.3",
"@slack/events-api": "^3.0.0",
"@slack/interactive-messages": "^2.0.1",
"@slack/types": "^2.0.0",
"axios": "^0.21.1",
"canvas": "^2.7.0",
"chart.js": "^3.2.1",
"cors": "^2.8.5",
"d3-dsv": "^2.0.0",
"dotenv": "^8.2.0",
"emoji-js": "^3.5.0",
"express": "^4.17.1",
"form-data": "^4.0.0",
"node-fetch": "^2.6.1",
"pg": "^8.6.0",
"query-string": "^7.0.0"
},
"devDependencies": {
"@types/d3-dsv": "^2.0.1",
"@types/dotenv": "^8.2.0",
"@types/emoji-js": "^3.5.0",
"@types/express": "^4.17.11",
"@types/node": "^15.0.2",
"@types/pg": "^7.14.11",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}