-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
84 lines (84 loc) · 2.71 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
{
"name": "audnexus",
"version": "1.9.1",
"description": "An API for aggregating audiobook data",
"repository": {
"type": "git",
"url": "https://github.com/djdembeck/audnexus"
},
"scripts": {
"build-docs": "redocly build-docs docs/spec/audnexus.yaml -o docs/index.html",
"build-ts": "tsc",
"build": "pnpm run build-ts",
"debug": "pnpm run build && pnpm run watch-debug",
"format": "prettier --config .prettierrc --write 'src/**/*.ts'",
"lint": "prettier --config .prettierrc --check 'src/**/*.ts' && tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"preinstall": "npx only-allow pnpm",
"release": "standard-version",
"serve-debug": "nodemon --inspect dist/server.js",
"serve": "node dist/server.js",
"start": "pnpm run build && pnpm run serve",
"test": "jest --coverage --forceExit --verbose --silent --runInBand",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"pnpm run watch-ts\" \"pnpm run serve-debug\"",
"watch-node": "nodemon dist/server.js",
"watch-test": "pnpm run test -- --watchAll",
"watch-ts": "tsc -w",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"pnpm run watch-ts\" \"pnpm run watch-node\""
},
"author": "David Dembeck",
"license": "GPL-3.0",
"dependencies": {
"@fastify/cors": "9.0.1",
"@fastify/helmet": "^11.0.0",
"@fastify/rate-limit": "9.1.0",
"@fastify/redis": "6.2.0",
"@fastify/schedule": "^4.1.1",
"axios": "^1.2.4",
"cheerio": "1.0.0-rc.12",
"domhandler": "5.0.3",
"fastify": "4.28.1",
"html-to-text": "9.0.5",
"jest-mock-extended": "3.0.7",
"jsrsasign": "^11.0.0",
"lodash": "4.17.21",
"module-alias": "2.2.3",
"moment": "^2.29.4",
"mongodb": "6.8.0",
"papr": "15.2.2",
"toad-scheduler": "^3.0.0",
"typescript": "5.5.4",
"zod": "^3.20.6"
},
"devDependencies": {
"@eslint/compat": "1.1.1",
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.8.0",
"@jest/types": "29.6.3",
"@redocly/cli": "1.19.0",
"@types/html-to-text": "9.0.4",
"@types/jest": "29.5.12",
"@types/jsrsasign": "10.5.14",
"@types/lodash": "4.17.7",
"@types/node": "20.14.14",
"@typescript-eslint/eslint-plugin": "8.0.0",
"@typescript-eslint/parser": "8.0.0",
"concurrently": "8.2.2",
"eslint": "9.8.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.6.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"globals": "15.9.0",
"jest": "29.7.0",
"nodemon": "3.1.4",
"prettier": "3.3.3",
"standard-version": "9.5.0",
"ts-jest": "29.2.4",
"ts-node": "10.9.2"
},
"_moduleAliases": {
"#config": "dist/config",
"#helpers": "dist/helpers",
"#interfaces": "dist/interfaces",
"#static": "dist/static"
}
}