-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.49 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.49 KB
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
{
"name": "slack-bolt-ts-template",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@slack/bolt": "^2.1.1",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase": "^7.24.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-wesbos": "^1.0.0",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "7.18.0",
"eslint-plugin-react-hooks": "1.7.0",
"husky": "^4.3.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0"
},
"scripts": {
"start": "ts-node -r dotenv/config src/index.ts",
"dev": "nodemon -r dotenv/config src/index.ts",
"test": "echo 'TODO'",
"build": "tsc src/index.ts --outDir dist --pretty",
"ngrok": "ngrok http 3000",
"format": "prettier --single-quote --write 'src/**/*'",
"format:check": "prettier --single-quote --check 'src/**/*'",
"lint": "eslint \"src/**/*.{js,ts}\" --quiet --fix",
"lint:check": "eslint \"src/**/*.{js,ts}\" --quiet",
"check": "yarn run format:check && yarn run lint:check",
"check:fix": "yarn run format && yarn run lint"
},
"husky": {
"hooks": {
"pre-push": "yarn lint:check && yarn format:check"
}
}
}