-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.66 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "line-tv-bot",
"version": "1.0.0",
"private": true,
"description": "TV programs notification bot for LINE",
"license": "MIT",
"author": {
"name": "nokazn",
"url": "https://github.com/nokazn"
},
"main": "handler.js",
"scripts": {
"prepare": "husky install",
"ci": "run-s -c static-check test:ci",
"static-check": "run-s -c \"check:*\"",
"check:format": "yarn format --check",
"check:spell": "cspell \"**/*.{t,j}s\" --no-progress",
"check:lint": "eslint \"**/*.{t,j}s\" --ignore-path .eslintignore --report-unused-disable-directives",
"check:type": "tsc --noEmit",
"format": "prettier \"**/*.{t,j}s\" --write",
"fix:lint": "yarn lint --fix",
"type-check:watch": "yarn type-check --watch",
"test": "cross-env NODE_ENV=test jest",
"test:ci": "cross-env NODE_ENV=test jest --ci",
"dev": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" serverless offline",
"ts-node": "ts-node -r tsconfig-paths/register"
},
"dependencies": {
"@line/bot-sdk": "^7.5.0",
"neverthrow": "^4.3.1",
"node-fetch": "^2.6.6",
"playwright": "^1.32.1",
"source-map-support": "^0.5.21",
"url-join": "^4.0.1",
"winston": "^3.4.0",
"zod": "^3.11.6"
},
"devDependencies": {
"@swc/core": "^1.3.42",
"@swc/helpers": "^0.4.14",
"@swc/jest": "^0.2.24",
"@types/aws-lambda": "^8.10.89",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.6",
"@types/node-fetch": "^2.5.12",
"@types/serverless": "^1.78.40",
"@types/url-join": "^4.0.1",
"@types/webpack-node-externals": "^2.5.3",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"cross-env": "^7.0.3",
"cspell": "^5.15.1",
"dayjs": "^1.11.3",
"dotenv": "^16.0.3",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"regenerator-runtime": "^0.13.9",
"serverless": "^3.29.0",
"serverless-create-global-dynamodb-table": "^3.1.1",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-iam-roles-per-function": "^3.2.0",
"serverless-offline": "^12.0.4",
"serverless-prune-plugin": "^2.0.2",
"serverless-webpack": "^5.11.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^4.1.2",
"typescript": "^5.0.3",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-node-externals": "^3.0.0"
},
"packageManager": "[email protected]"
}