This repository was archived by the owner on Sep 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.37 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.37 KB
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
{
"name": "duo-cron-job",
"version": "1.0.0",
"description": "Node cron job service for ESS User Office project.",
"main": "index.js",
"repository": {
"url": "https://github.com/UserOfficeProject/user-office-cron"
},
"scripts": {
"dev": "node index.js",
"debug": "node --inspect index.js",
"build": "docker build -t dmsc/duo-cron-job .",
"prod": "node index.js",
"test": "jest --coverage",
"lint": "eslint --fix . && echo Lint complete."
},
"lint-staged": {
"**/*.{js,ts}": "npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"duo",
"cron-job",
"microservice",
"ess",
"user-office"
],
"author": "SWAP",
"license": "ISC",
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
},
"dependencies": {
"@user-office-software/duo-logger": "^2.1.1",
"cron": "^3.1.7",
"dotenv": "^16.3.1",
"envalid": "^7.3.1",
"jest": "^29.7.0",
"luxon": "^3.3.0",
"node-fetch": "^3.3.2",
"sinon": "^15.2.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^4.3.8",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
}
}