-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1019 Bytes
/
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
{
"name": "slack-quote-watch",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:ryokohbato/slack-quote-watch.git",
"author": "ryokohbato <[email protected]>",
"license": "MIT",
"scripts": {
"build": "webpack",
"build:production": "NODE_ENV=\"production\" webpack && prettier --write './*.{tsx,js}'",
"lint": "eslint --fix && prettier --write --cache 'src/*.ts'"
},
"devDependencies": {
"@slack/bolt": "^3.12.1",
"@tsconfig/strictest": "^1.0.1",
"@types/node": "^18.7.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.33.0",
"dotenv": "^16.0.1",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.6.2",
"terser-webpack-plugin": "^5.3.3",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}