-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.52 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@frinx/inventory-server",
"version": "7.0.1",
"engines": {
"node": "18"
},
"author": "Frinx.io",
"license": "MIT",
"scripts": {
"build:ts": "cross-env NODE_ENV=production tsc -p ./tsconfig.production.json",
"build:clear": "rimraf build",
"build": "run-s build:clear build:ts",
"compile:seed": "tsc && cp ./build/prisma/seed.js ./prisma/seed.js",
"dev": "cross-env DEBUG='frinx-inventory-server' DEBUG_COLORS=true DOTENV_CONFIG_PATH=./.env ts-node-dev --transpile-only -r dotenv/config ./src/index.ts",
"dev:migrate": "prisma migrate save --experimental -c && prisma migrate up --experimental -c",
"prisma:seed": "ts-node -r dotenv/config ./prisma/seed.ts",
"prisma:generate": "prisma generate",
"lint": "eslint --ext .ts 'src/**/*.ts' --max-warnings 0",
"type-check": "tsc --noEmit",
"formatter": "prettier --write '*.md' '**/*.ts' '**/*.js' '**/*.json' ",
"formatter:check": "prettier -l '*.md' '**/*.ts' '**/*.js' '**/*.json' ",
"test:generate": "cross-env NODE_ENV=testing ts-node --transpile-only -r dotenv/config src/schema/index.ts",
"jest": "cross-env NODE_ENV=testing jest --verbose",
"test": "run-s test:generate jest",
"codegen": "run-s codegen:discovery codegen:monitoring",
"codegen:discovery": "graphql-codegen --config codegen-topology-discovery.yml",
"codegen:monitoring": "graphql-codegen --config codegen-perf-monitoring.yml"
},
"devDependencies": {
"@frinx/eslint-config-typescript-base": "15.0.0-build.1",
"@graphql-codegen/cli": "3.3.1",
"@graphql-codegen/introspection": "^3.0.1",
"@graphql-codegen/typescript": "^3.0.4",
"@graphql-codegen/typescript-operations": "^3.0.4",
"@types/jest": "28.1.8",
"@types/ssh2": "^1.11.6",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.54.0",
"@vercel/ncc": "0.36.1",
"cross-env": "7.0.3",
"dotenv": "16.3.1",
"eslint": "8.35.0",
"eslint-config-prettier": "7.2.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.27.5",
"get-port": "5.1.1",
"glob": "8.1.0",
"jest": "28.1.3",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"typescript": "4.9.5"
},
"dependencies": {
"@apollo/server": "^4.9.4",
"@devoxa/prisma-relay-cursor-connection": "3.1.1",
"@graphql-tools/schema": "^9.0.9",
"@prisma/client": "5.1.1",
"@types/cors": "^2.8.14",
"@types/express": "4.17.13",
"@types/graphql-upload": "15.0.2",
"@types/json-templates": "3.0.0",
"@types/lodash": "4.17.0",
"@types/node": "16.18.32",
"@types/node-fetch": "2.6.4",
"@types/pino": "7.0.4",
"@types/ssh2": "^1.11.6",
"@types/url-join": "4.0.1",
"@types/uuid": "^9.0.0",
"@types/ws": "^8.5.3",
"base64url": "3.0.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"csv-parse": "5.3.10",
"express": "4.19.2",
"fp-ts": "2.15.0",
"graphql": "^16.8.1",
"graphql-relay": "0.10.0",
"graphql-request": "^6.0.0",
"graphql-upload": "15.0.2",
"graphql-ws": "^5.11.2",
"i18n-iso-countries": "7.5.0",
"io-ts": "2.2.20",
"json-templates": "4.2.0",
"kafkajs": "^2.2.4",
"lodash": "4.17.21",
"nexus": "1.3.0",
"node-fetch": "2.6.11",
"node-ssh": "^13.0.0",
"pino": "8.11.0",
"pino-pretty": "9.4.0",
"prisma": "5.1.1",
"ssh2": "^1.11.0",
"url-join": "4.0.1",
"uuid": "^9.0.0",
"ws": "^8.11.0"
}
}