-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.57 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
{
"name": "bichard7-next-data",
"//": "This is NOT the version of the published package! See output-data/package.json instead!",
"version": "1.0.0",
"description": "The data for Bichard",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky",
"build": "tsc --noEmit -p tsconfig.json",
"import-pnc-data": "ts-node -T src/import-pnc-data.ts",
"download-offence-code-data": "ts-node src/download-offence-code-data.ts",
"download-standing-data": "ts-node src/download-standing-data-api.ts",
"download-organisation-unit-data": "ts-node src/download-organisation-unit-data.ts",
"merge-offence-data": "ts-node src/merge-offence-data.ts",
"merge-organisation-unit-data": "ts-node src/merge-organisation-unit-data.ts",
"generate-trigger-config": "ts-node src/generate-trigger-properties/generate.ts",
"update-deps": "ncu -u && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ministryofjustice/bichard7-next-data.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ministryofjustice/bichard7-next-data/issues"
},
"homepage": "https://github.com/ministryofjustice/bichard7-next-data#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.688.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/puppeteer": "^7.0.4",
"axios": "^1.7.7",
"date-fns": "^4.1.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"fast-xml-parser": "^4.5.0",
"google-auth-library": "^8.9.0",
"googleapis": "^144.0.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jsonlint-mod": "^1.7.6",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"mockdate": "^3.0.5",
"npm-check-updates": "^17.1.10",
"prettier": "^3.3.3",
"puppeteer": "^23.7.1",
"sort-json-keys": "^1.0.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"uuid": "^11.0.3",
"xlsx": "^0.18.5",
"zod": "^3.23.8"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix --max-warnings 0 --ignore-pattern !.ncurc.js"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-prettier": "^5.2.1"
}
}