-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
63 lines (63 loc) · 2.14 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
{
"name": "graphql-authz-monorepo",
"private": true,
"description": "GraphQL authorization layer",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"clean": "run-s clean:*",
"clean:packages": "rimraf packages/{,plugins}/*/{dist,node_modules,tsconfig.tsbuildinfo}",
"clean:root": "rimraf {node_modules,coverage,tsconfig.tsbuildinfo}",
"build": "tsc --build tsconfig.json",
"watch": "pnpm build -w --preserveWatchOutput",
"test": "pnpm jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check packages/*/src/**/*.ts packages/plugins/*/src/**/*.ts __tests__",
"prettier:fix": "prettier --write packages/*/src/**/*.ts packages/plugins/*/src/**/*.ts __tests__",
"preinstall": "npx only-allow pnpm",
"prerelease": "pnpm build",
"release": "changeset publish"
},
"author": "Dmitry Til <till.dima@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AstrumU/graphql-authz.git"
},
"devDependencies": {
"@apollo/server": "4.7.5",
"@changesets/cli": "2.16.0",
"@envelop/core": "5.0.1",
"@envelop/types": "5.0.0",
"@graphql-authz/apollo-server-plugin": "workspace:^",
"@graphql-authz/apollo-server-v2-plugin": "workspace:^",
"@graphql-authz/core": "workspace:^",
"@graphql-authz/directive": "workspace:^",
"@graphql-authz/envelop-plugin": "workspace:^",
"@graphql-tools/mock": "9.0.0",
"@graphql-tools/schema": "10.0.2",
"@graphql-tools/utils": "10.0.11",
"@graphql-tools/wrap": "10.0.1",
"@types/jest": "26.0.24",
"@types/node": "20.14.10",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"eslint": "7.30.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-security": "1.4.0",
"graphql": "^16.8.1",
"jest": "27.3.1",
"npm-run-all": "4.1.5",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"ts-jest": "27.0.7",
"typescript": "5.5.4"
}
}