-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.51 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.51 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
{
"name": "user-office-gateway",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"build": "rm -rf ./build && tsc",
"test": "exit 0",
"prod": "npm run build && env NODE_ENV=production node ./build/index.js",
"dev": "ts-node-dev --rs --respawn ./src/index.ts",
"dev:docker": "npm install && ts-node-dev --rs --respawn ./src/index.ts",
"lint": "tsc --noEmit && eslint ./src --ext .js,.ts --quiet",
"lint:all": "tsc --noEmit && eslint ./src --ext .js,.ts",
"lint:fix": "tsc --noEmit && eslint ./src --ext .js,.ts --fix --quiet",
"prepare": "husky"
},
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/gateway": "^2.10.1",
"@apollo/server": "^4.11.3",
"@user-office-software/duo-logger": "^2.3.2",
"dotenv": "^16.4.7",
"graphql": "^16.10.0",
"graphql-request": "^7.2.0",
"reflect-metadata": "^0.2.2",
"type-graphql": "^2.0.0-rc.2"
},
"devDependencies": {
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "3.4.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3"
},
"engines": {
"npm": ">=10.9.2",
"node": ">=22.0.0"
}
}