-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.22 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
{
"name": "dragons-monorepo",
"private": true,
"version": "1.0.0",
"description": "pnpm monorepo for the Dragons GraphQL API and editor",
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"overrides": {
"graphql": "^16.8.1",
"got": "^11.8.5",
"undici": "^5.8.0",
"minimatch": "^3.0.5",
"jsonwebtoken": "^9.0.0",
"json5": "^2.2.2",
"tough-cookie": "^4.1.3",
"apollo-server-core": "^2.26.1",
"debug": "^4.3.1",
"@babel/traverse": "^7.23.2",
"braces": "^3.0.3",
"ws": "^5.2.4",
"dset": "^3.1.4",
"lodash": "^4.18.0"
}
},
"devDependencies": {
"husky": "^9.1.7",
"prettier": "^3.1.0"
},
"scripts": {
"dev:api": "pnpm --filter @dragons/api dev",
"dev:editor": "pnpm --filter @dragons/editor dev",
"test": "pnpm --filter @dragons/api test",
"build": "pnpm -r build",
"generate-gql-types": "pnpm --filter @dragons/api generate-gql-types",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/primavera133/dragonsGraphQLAPI.git"
},
"keywords": [
"Dragonflies",
"graphql"
],
"author": "Jonas Myrenås",
"license": "ISC"
}