-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.43 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
{
"name": "webcron",
"version": "4.0.0",
"description": "Webcron is a server that will periodically download web content and store it in text, PDF, JPEG, and PNG format.",
"license": "Apache-2.0",
"private": true,
"scripts": {
"start": "npm run build && npm run watch",
"lint": "npx eslint .",
"build": "npm run build-ts",
"serve": "node dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"nodemon dist/server.js\"",
"test": "jest --forceExit --coverage --detectOpenHandles",
"build-ts": "tsc",
"watch-ts": "tsc -w"
},
"jest": {
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/test/**/*.test.(ts|js)"
],
"testEnvironment": "node"
},
"author": "Jeremy Edwards",
"dependencies": {
"async": "^3.2.4",
"async-retry": "^1.3.3",
"commander": "^9.5.0",
"compression": "^1.7.4",
"errorhandler": "^1.5.1",
"express": "^4.18.2",
"express-prom-bundle": "^6.6.0",
"js-yaml": "^4.1.0",
"lusca": "^1.7.0",
"mkdir-recursive": "^0.4.0",
"morgan": "^1.10.0",
"node-cron": "^3.0.2",
"npm-check-updates": "^16.6.2",
"pkg": "^5.8.0",
"prom-client": "^14.1.1",
"puppeteer": "^19.5.0",
"request": "^2.88.2",
"retry": "^0.13.1",
"serve-index": "^1.9.1",
"typescript": "^4.9.4",
"url": "^0.11.0"
},
"devDependencies": {
"@types/async": "^3.2.16",
"@types/async-retry": "^1.4.5",
"@types/bcrypt": "^5.0.0",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.5",
"@types/js-yaml": "^4.0.5",
"@types/lusca": "^1.7.1",
"@types/morgan": "^1.9.4",
"@types/node": "^18.11.18",
"@types/node-cron": "^3.0.7",
"@types/puppeteer": "^5.4.7",
"@types/request": "^2.48.8",
"@types/retry": "^0.12.2",
"@types/serve-index": "^1.9.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"concurrently": "^7.6.0",
"jest": "^29.3.1",
"shelljs": "^0.8.5",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3"
},
"bin": "dist/server.js",
"pkg": {
"assets": "dist/**/*"
}
}