-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.47 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
{
"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.9.3",
"@apollo/server": "^4.11.2",
"@user-office-software/duo-logger": "^2.2.1",
"dotenv": "^16.4.5",
"graphql": "^16.9.0",
"graphql-request": "^6.1.0",
"reflect-metadata": "^0.2.2",
"type-graphql": "^2.0.0-rc.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.3"
},
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
}
}