generated from hmcts/expressjs-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.17 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
{
"name": "dtsse-dashboard-ingestion",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "AZURE_LOG_LEVEL=info NODE_ENV=production timeout 300 ts-node src/main/run.ts",
"start:dev": "timeout 600 ts-node -r dotenv/config src/main/run.ts",
"lint": "eslint . --ext .js,.ts && prettier --check .",
"lint:fix": "prettier --write . && eslint --fix .",
"build": "exit 0",
"test": "npx if-env CI=true && exit 0 || yarn test:unit",
"test:unit": "jest",
"test:coverage": "jest --coverage",
"test:a11y": "exit 0",
"cichecks": "yarn lint && yarn test",
"prepare": "husky install",
"migration:create": "ts-node -r dotenv/config src/main/run.ts create --",
"migration:down": "yarn start:dev down"
},
"dependencies": {
"@azure/cosmos": "4.1.1",
"@azure/identity": "^4.2.1",
"@azure/storage-blob": "^12.23.0",
"@hmcts/properties-volume": "1.2.0",
"@octokit/graphql": "7.1.0",
"@octokit/rest": "20.1.1",
"@types/jira-client": "7.1.9",
"@types/node": "20.16.10",
"@types/pg": "8.11.10",
"@types/pg-copy-streams": "^1.2.5",
"@types/pg-format": "1.0.5",
"applicationinsights": "3.3.0",
"axios": "1.7.7",
"csv-parse": "^5.5.6",
"csv-stringify": "^6.5.0",
"db-migrate": "0.11.14",
"db-migrate-pg": "1.5.2",
"ip": "^2.0.1",
"jira-client": "8.2.2",
"pg": "8.13.0",
"pg-copy-streams": "^6.0.6",
"pg-format": "1.0.4",
"tough-cookie": "^4.1.3",
"ts-node": "10.9.2",
"typescript": "5.6.2"
},
"devDependencies": {
"@testcontainers/postgresql": "^10.3.2",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"dotenv": "16.4.5",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.8.3",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "2.8.8",
"testcontainers": "10.13.1",
"ts-jest": "29.2.5"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,css,md,html,json}": "prettier --write"
},
"packageManager": "yarn@4.5.0"
}