-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.21 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.21 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
{
"name": "@escape.tech/graphql-armor-monorepo",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:Escape-Technologies/graphql-armor.git"
},
"scripts": {
"build": "preconstruct build",
"build:yarn": "yarn workspaces foreach -ptv run build",
"watch": "preconstruct watch",
"lint": "prettier --check '**/*.{ts,js}' && diff README.md packages/graphql-armor/README.md",
"prettier": "prettier --write '**/*.{ts,js}'",
"test": "jest",
"test:ci": "jest --coverage",
"release": "changeset publish"
},
"author": "Escape Technologies SAS",
"private": true,
"license": "MIT",
"bugs": {
"url": "https://github.com/Escape-Technologies/graphql-armor/issues"
},
"homepage": "https://github.com/Escape-Technologies/graphql-armor",
"devDependencies": {
"@babel/core": "7.26.10",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.25.9",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/preset-env": "7.26.9",
"@babel/preset-typescript": "7.27.0",
"@changesets/cli": "2.29.1",
"@commitlint/cli": "19.8.1",
"@commitlint/config-angular": "19.8.1",
"@escape.tech/mookme": "2.5.1",
"@preconstruct/cli": "2.8.12",
"@trivago/prettier-plugin-sort-imports": "5.2.2",
"@types/babel__core": "7.20.5",
"@types/babel__preset-env": "7.10.0",
"@typescript-eslint/eslint-plugin": "8.30.1",
"@typescript-eslint/parser": "8.30.1",
"eslint": "9.29.0",
"eslint-config-google": "0.14.0",
"jest": "29.7.0",
"prettier": "3.5.3",
"typescript": "5.8.3"
},
"workspaces": [
"examples/*",
"packages/*",
"packages/plugins/*",
"services/*"
],
"volta": {
"node": "24.2.0",
"yarn": "1.22.22"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "yarn@4.9.2",
"preconstruct": {
"packages": [
"packages/graphql-armor",
"packages/types",
"packages/plugins/*"
],
"distFilenameStrategy": "unscoped-package-name"
},
"jest": {
"collectCoverageFrom": [
"packages/plugins/*/src/*.ts",
"packages/graphql-armor/src/**/*.ts",
"!packages/graphql-armor/src/apollo/protections/*.ts"
]
}
}