-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.23 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.23 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"author": "Roberto Pintos López",
"bugs": {
"url": "https://github.com/inversify/framework-examples/issues"
},
"description": "InversifyJs Catalog GraphQL API Example",
"dependencies": {
"@apollo/server": "5.4.0",
"@inversifyjs/apollo-core": "0.6.0",
"@inversifyjs/apollo-express": "0.7.0",
"@inversifyjs/apollo-subscription-ws": "0.2.4",
"@inversifyjs/graphql-codegen": "0.4.0",
"@inversifyjs/http-core": "^5.0.1",
"@inversifyjs/http-express": "^4.10.2",
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"@prisma/client-runtime-utils": "^7.5.0",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"inversify": "^7.11.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@as-integrations/express5": "1.1.2",
"@types/express": "5.0.6",
"@types/node": "24.12.0",
"@vitest/coverage-v8": "4.1.0",
"eslint": "9.39.4",
"graphql": "16.13.1",
"ioredis": "5.10.0",
"prettier": "3.8.1",
"prisma": "7.5.0",
"rimraf": "6.1.3",
"tslib": "2.8.1",
"typescript": "5.9.3",
"vitest": "4.1.0"
},
"homepage": "https://inversify.io",
"keywords": [
"inversify",
"framework",
"example",
"live-chat"
],
"devEngines": {
"node": "^24.10.0",
"pnpm": "^10.13.1"
},
"license": "MIT",
"module": "lib/esm/index.js",
"exports": {
".": "./lib/esm/index.js"
},
"name": "@inversifyjs/example-catalog-graphql-api",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inversify/framework-examples.git"
},
"type": "module",
"scripts": {
"build": "tsc && pnpm run generate:graphql:types",
"build:clean": "rimraf lib",
"db:migrate": "prisma migrate deploy",
"db:generate": "prisma generate",
"format": "prettier --write ./src",
"generate:graphql:types": "node ./lib/app/scripts/generateGraphqlTypes.js",
"lint": "eslint ./src",
"prebuild": "pnpm run build:clean",
"test": "vitest run",
"test:integration": "pnpm run test --project Integration",
"test:coverage": "pnpm run test:unit --coverage",
"test:uncommitted": "pnpm run test --changed=HEAD",
"test:unit": "pnpm run test --project Unit"
},
"version": "0.1.0"
}