This repository has been archived by the owner on Oct 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.76 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
{
"name": "dtsse-dashboard-jira-ingestion",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "NODE_ENV=production ts-node -r tsconfig-paths/register src/main/run.ts",
"start:dev": "ts-node -r dotenv/config -r tsconfig-paths/register 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 -r tsconfig-paths/register src/main/run.ts create --",
"migration:down": "yarn start:dev down"
},
"dependencies": {
"@hmcts/properties-volume": "0.0.14",
"@types/jira-client": "^7.1.4",
"@types/node": "18.7.18",
"@types/pg": "8.6.5",
"@types/pg-format": "1.0.2",
"applicationinsights": "2.3.5",
"db-migrate": "0.11.13",
"db-migrate-pg": "1.2.2",
"jira-client": "^8.1.0",
"pg": "8.8.0",
"pg-format": "1.0.4",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.0",
"typescript": "4.8.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"dotenv": "16.0.2",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.0.4",
"husky": "8.0.1",
"jest": "29.1.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"ts-jest": "29.0.2"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,css,md,html,json}": "prettier --write"
}
}