-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "konakaga",
"version": "0.0.0",
"description": "TWINSの休校情報を通知するやつ",
"scripts": {
"start": "node dist/index.js",
"start:dev": "rm -f ./*.png && node dist/index.js",
"test": "rm -f ./*.png && jest -notify --config=./jest.config.js",
"build": "tsc",
"postinstall": "npm run build"
},
"engines": {
"node": "10.x"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/entyo/konakaga.git"
},
"author": "e_ntyo",
"license": "MIT",
"bugs": {
"url": "https://github.com/entyo/konakaga/issues"
},
"homepage": "https://github.com/entyo/konakaga#readme",
"devDependencies": {
"express": "^4.16.4",
"@types/express": "^4.16.1",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"@types/jest": "^24.0.12",
"@types/dotenv": "^6.1.1",
"@types/node": "^10.x",
"@types/node-cron": "^2.0.2",
"@types/puppeteer": "^1.12.3",
"typescript": "3.4.5"
},
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"dotenv": "^8.0.0",
"fp-ts": "^1.17.1",
"newtype-ts": "^0.2.4",
"node-cron": "^2.0.3",
"puppeteer": "^1.14.0"
}
}