-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
76 lines (76 loc) · 2.21 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
{
"name": "@escape.tech/graphql-armor-monorepo",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]: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.25.2",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.24.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/preset-env": "7.25.2",
"@babel/preset-typescript": "7.24.7",
"@changesets/cli": "2.27.7",
"@commitlint/cli": "19.5.0",
"@commitlint/config-angular": "19.5.0",
"@escape.tech/mookme": "2.5.1",
"@preconstruct/cli": "2.8.9",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/babel__core": "7.20.5",
"@types/babel__preset-env": "7.9.6",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"eslint": "9.13.0",
"eslint-config-google": "0.14.0",
"jest": "29.7.0",
"prettier": "3.3.0",
"typescript": "5.4.5"
},
"workspaces": [
"examples/*",
"packages/*",
"packages/plugins/*",
"services/*"
],
"volta": {
"node": "20.18.0",
"yarn": "1.22.22"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"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"
]
}
}