-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "justwatch",
"version": "1.0.0",
"description": "",
"main": "dist/worker.js",
"type": "module",
"scripts": {
"start": "node ./dist/index.js",
"start:docker": "docker run -it --rm --env-file=.env notion-films",
"dev": "npm run build && npm run start",
"main": "ts-node ./src/index.ts",
"prebuild": "rm -rf dist",
"build": "tsc",
"build:docker": "docker build -t notion-films .",
"publish:docker": "docker tag notion-films ghcr.io/nick-lehmann/notion-films && docker push ghcr.io/nick-lehmann/notion-films"
},
"eslintConfig": {
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"@notionhq/client": "^0.2.2",
"@types/node-cron": "^2.0.4",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"dotenv": "^10.0.0",
"justwatch-api": "^1.0.7",
"node-cron": "^3.0.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/node": "^16.3.1",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-typescript": "^3.0.0",
"prettier": "^2.3.0"
}
}