-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.47 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
{
"name": "emojibot",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@slack/bolt": "^3.8.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"form-data": "^4.0.0",
"node-fetch": "2",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"devDependencies": {
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-wesbos": "^1.0.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.3",
"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.1",
"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 --write 'src/**/*'",
"format:check": "prettier --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"
}
}
}