-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
{
"name": "movies-today-bot",
"version": "1.0.0",
"description": "",
"scripts": {
"coverage": "vitest run --coverage",
"test": "vitest",
"build": "rm -rf dist && tsc --project tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"start": "node dist/index.js",
"dev-local": "NODE_ENV=development tsx watch --env-file=.env.development src/jobs/daily-movie.ts",
"dev": "tsx watch src/jobs/daily-movie.ts"
},
"type": "module",
"keywords": [
"masto",
"bot",
"typescript",
"nodejs",
"date-fns",
"zod"
],
"author": "[email protected]",
"license": "MIT",
"private": true,
"dependencies": {
"bree": "^9.2.3",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"masto": "^6.8.0",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@faker-js/faker": "^8.4.1",
"@tsconfig/node20": "^20.1.4",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.9",
"@vitest/coverage-istanbul": "^2.0.1",
"eslint": "^9.6.0",
"globals": "^15.8.0",
"msw": "^2.3.1",
"tsc-alias": "^1.8.10",
"tsx": "^4.16.0",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.1"
},
"overrides": {
"eslint": "^9.6.0"
}
}