-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "mite-reminder",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node -r dotenv/config src/index.ts",
"cmd": "ts-node -r dotenv/config src/cmd/cmd.ts",
"build": "webpack --mode development",
"pretest": "npm run lint",
"test": "jest",
"coverage": "jest --coverage",
"lint": "npx eslint . --ext .ts",
"build:prod": "webpack"
},
"author": "",
"license": "MIT",
"dependencies": {
"@slack/bolt": "^2.1.1",
"date-holidays": "^1.6.1",
"dotenv": "^8.2.0",
"fp-ts": "^2.7.0",
"googleapis": "^62.0.0",
"mite-api": "^0.1.1",
"moment": "^2.26.0",
"node-cron": "^2.0.3",
"parsimmon": "^1.13.0",
"tz-offset": "0.0.2"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^14.0.24",
"@types/node-cron": "^2.0.3",
"@types/parsimmon": "^1.10.2",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"jest": "^26.0.1",
"json-loader": "^0.5.7",
"ts-jest": "^26.1.0",
"ts-loader": "^8.0.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.0"
}
}