-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.6 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@laurent22/biniou",
"version": "1.0.19",
"packageManager": "[email protected]",
"description": "Task automation utility",
"repository": "https://github.com/laurent22/biniou/",
"bin": "./dist/app/index.js",
"scripts": {
"test": "jest",
"linter": "./node_modules/.bin/eslint --fix --ext .js --ext .jsx --ext .ts --ext .tsx",
"linter-ci": "./node_modules/.bin/eslint --ext .js --ext .jsx --ext .ts --ext .tsx",
"start": "node dist/app/index.js",
"tsc": "npx tsc --project tsconfig.json",
"watch": "tsc --watch --project tsconfig.json",
"run-job": "node dist/app/index.js",
"generate-types": "node dist/tools/generate-types.js",
"db-migrate": "node dist/tools/db-migrate.js",
"prepare": "npm run tsc",
"dev-db-rebuild": "del db-development.sqlite && npm run db-migrate && npm run generate-types"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run linter",
"git add"
]
},
"author": "Laurent Cozic",
"license": "MIT",
"devDependencies": {
"@rmp135/sql-ts": "^1.3.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.1.2",
"@types/koa": "^2.11.0",
"@types/md5": "^2.1.33",
"@types/mustache": "^4.1.0",
"@types/node": "^18.8.5",
"@types/node-fetch": "^2.5.4",
"@types/puppeteer": "^2.0.0",
"@types/twitter": "^1.7.0",
"@types/yargs": "^13.0.4",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^24.1.3",
"gulp": "^4.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^4.0.10",
"jest": "^26.6.3",
"lint-staged": "^9.5.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@joplin/turndown": "^4.0.35",
"@joplin/turndown-plugin-gfm": "^1.0.17",
"@joplin/utils": "^3.2.4",
"@types/nodemailer": "^6.4.0",
"cron-parser": "^2.13.0",
"dotenv": "^8.2.0",
"env-paths": "^2.2.0",
"fs-extra": "^8.1.0",
"html-entities": "^1.3.1",
"knex": "^0.20.6",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-logger": "^3.2.1",
"koa-router": "^8.0.6",
"koa-views": "^6.2.1",
"md5": "^2.2.1",
"moment": "^2.24.0",
"mustache": "^4.1.0",
"nanoid": "^2.1.9",
"node-fetch": "^2.6.0",
"node-schedule": "^1.3.2",
"nodemailer": "^6.4.16",
"puppeteer": "^2.0.0",
"rss-parser": "3.12.0",
"source-map-support": "^0.5.16",
"sqlite3": "5.1.2",
"swig": "^1.4.2",
"twitter": "^1.7.1",
"yargs": "^15.1.0"
}
}