This repository has been archived by the owner on Apr 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.81 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
{
"name": "watch-follow-follower",
"version": "2.0.0",
"description": "Checks Twitter follow/follower changes and notifies Discord.",
"main": "dist/main.js",
"repository": "[email protected]:tomacheese/watch-follow-follower.git",
"author": "Tomachi",
"license": "MIT",
"private": true,
"scripts": {
"start": "ts-node -r tsconfig-paths/register ./src/main.ts",
"dev": "ts-node-dev -r tsconfig-paths/register ./src/main.ts",
"package": "run-s clean compile packing",
"packing": "ncc build ./dist/main.js -o output/ -m -s",
"compile": "tsc -p .",
"compile:test": "tsc -p . --noEmit",
"clean": "rimraf dist output",
"generate-schema": "typescript-json-schema --required tsconfig.json Configuration -o schema/Configuration.json",
"lint": "run-p -c lint:prettier lint:eslint lint:tsc",
"lint:prettier": "prettier --check src",
"lint:eslint": "eslint . --ext ts,tsx",
"lint:tsc": "tsc",
"fix": "run-s fix:prettier fix:eslint",
"fix:eslint": "eslint . --ext ts,tsx --fix",
"fix:prettier": "prettier --write src"
},
"devDependencies": {
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"@vercel/ncc": "0.38.1",
"axios": "1.6.8",
"cycle": "1.0.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "17.3.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "52.0.0",
"logform": "2.6.0",
"prettier": "3.2.5",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"twitter-api-v2": "1.16.3",
"typescript": "5.4.5",
"typescript-json-schema": "0.63.0",
"winston": "3.13.0",
"winston-daily-rotate-file": "5.0.0",
"yarn-run-all": "3.1.1"
}
}