-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.77 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
{
"name": "user-office-visa-adapter",
"version": "0.0.1",
"description": "User Office VISA adapter",
"main": "src/index.ts",
"scripts": {
"start": "tsc && node ./build/index.js",
"dev": "docker-compose up -d --remove-orphans && ts-node-dev --inspect --respawn -T ./src/index.ts",
"build": "rm -rf ./build && tsc",
"lint": "tsc --noEmit && eslint . --ext .js,.ts --quiet",
"lint:fix": "tsc --noEmit && eslint . --ext .js,.ts --fix --quiet"
},
"keywords": [
"UOS",
"VISA"
],
"author": "SWAP",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^28.1.1",
"@types/node": "^17.0.42",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^28.1.1",
"ts-jest": "^28.0.4",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.3"
},
"dependencies": {
"@graphql-codegen/cli": "^2.12.0",
"@graphql-codegen/typescript": "^2.4.9",
"@graphql-codegen/typescript-graphql-request": "^4.5.4",
"@graphql-codegen/typescript-operations": "^2.4.3",
"@types/knex": "^0.16.1",
"@types/pg": "^8.10.3",
"@types/ssh2": "^1.11.14",
"@user-office-software/duo-logger": "^2.0.2",
"@user-office-software/duo-message-broker": "^1.6.0",
"dotenv": "^14.3.2",
"express": "^4.18.1",
"knex": "^2.4.0",
"pg": "^8.11.3",
"reflect-metadata": "^0.1.13",
"ssh2": "^1.14.0",
"tsyringe": "^4.8.0"
},
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
}
}