-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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
{
"name": "slackbot",
"version": "1.0.0",
"description": "2022 mju likelion slackbot",
"main": "index.js",
"repository": "https://github.com/mju-likelion/Regigigas.git",
"author": "minjung <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "nodemon -e ts,js,json src --exec swc-node src/index",
"check": "tsc index.ts --watch",
"pm2": "pm2 start swc-node src/index.ts"
},
"dependencies": {
"@slack/bolt": "^3.11.0",
"cross-fetch": "^3.1.5",
"date-fns": "^2.28.0",
"dotenv": "^16.0.0",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.164",
"@swc/register": "^0.1.10",
"@types/node": "^17.0.23",
"@types/sqlite3": "^3.1.8",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"regenerator-runtime": "^0.13.9",
"typescript": "^4.6.4"
}
}