-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 839 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 839 Bytes
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
{
"name": "nhl-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"workspaces": [
"apps/*",
"libs/*"
],
"scripts": {
"dev:api": "pnpm --filter api start:dev",
"dev:web": "pnpm --filter web dev",
"codegen": "graphql-codegen --config codegen.yml",
"db:generate": "pnpm --filter api db:generate",
"db:migrate": "pnpm --filter api db:migrate"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.15.0",
"pnpm": {
"onlyBuiltDependencies": [
"@apollo/protobufjs",
"@nestjs/core",
"unrs-resolver"
]
},
"devDependencies": {
"@graphql-codegen/cli": "^6.1.1",
"@graphql-codegen/typescript": "^5.0.7",
"@graphql-codegen/typescript-operations": "^5.0.7",
"@graphql-codegen/typescript-vue-apollo": "^4.1.2"
}
}