generated from hyodoblog/line-bot-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1 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
{
"name": "line-stripe-not-db-ec",
"license": "MIT",
"scripts": {
"build": "tsc",
"build:re": "rm -rf dist && yarn build",
"dev": "yarn build:re && node dist/index.js",
"start": "yarn shell",
"eslint": "eslint --ext \".ts\" . --fix",
"prettier": "prettier --write .",
"lint": "yarn eslint && yarn prettier",
"init:richmenu": "yarn build && node dist/migrations/rich-menu"
},
"engines": {
"node": "18"
},
"main": "dist/index.js",
"dependencies": {
"@line/bot-sdk": "^7.5.2",
"axios": "^1.5.0",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"module-alias": "^2.2.3",
"stripe": "^13.5.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/module-alias": "^2.0.2",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}