-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.58 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": "pinata-libre",
"version": "1.0.0",
"main": "./build/index.js",
"license": "MIT",
"scripts": {
"start": "nodemon -r dotenv-safe/config ./src/index.ts",
"build": "tsc",
"check-types": "tsc --noEmit",
"run-lint": "eslint --max-warnings=0 --ext .ts src",
"lint": "run-s check-types run-lint",
"start-ngrok": "ngrok http 3000"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@types/lru-cache": "^5.1.0",
"@types/node": "^12.0.0",
"@types/pluralize": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"dotenv-safe": "^8.2.0",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"ngrok": "^3.3.0",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@slack/events-api": "^2.3.4",
"@slack/interactive-messages": "^1.7.0",
"@slack/oauth": "^1.4.0",
"@slack/web-api": "^5.14.0",
"express": "^4.17.1",
"lru-cache": "^6.0.0",
"pluralize": "^8.0.0",
"sqlite3": "^5.0.0",
"typeorm": "^0.2.29"
}
}