forked from ericmakesapps/graphql-passport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.44 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
77
78
79
{
"name": "@appigram/graphql-passport",
"version": "0.6.5",
"description": "Strategy and utilities to use passport.js with GraphQL server",
"main": "lib/index.js",
"scripts": {
"build": "tsc --noEmit --pretty && npm run clean && npm run build:types && npm run build:js && npm run build:post",
"build:types": "tsc --emitDeclarationOnly --project tsconfig-build.json",
"build:js": "babel src --extensions '.ts,.tsx' --source-maps --out-dir lib --ignore 'src/test'",
"build:post": "rimraf lib/test",
"clean": "rimraf lib",
"lint": "tsc --noEmit && eslint \"src/**/*.{js,ts}\" --quiet --fix",
"check-types": "tsc",
"watch-ts": "tsc -w",
"prepare": "npm run lint && npm run test && npm run build",
"test": "jest src",
"test:watch": "jest src --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/appigram/graphql-passport.git"
},
"keywords": [
"graphql",
"passport",
"authorization",
"authentication"
],
"author": "Evgeny Sysmanov",
"license": "MIT",
"dependencies": {
"@types/node-fetch": "^3.0.2",
"passport-strategy": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@babel/runtime": "^7.18.3",
"@types/express-session": "^1.17.4",
"@types/jest": "^27.0.1",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"apollo-server": "^3.9.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"express-session": "^1.17.3",
"jest": "^27.2.0",
"passport": "^0.6.0",
"prettier": "^2.7.0",
"query-string": "^7.1.1",
"supertest": "^6.1.6",
"typescript": "^4.7.3"
},
"optionalDependencies": {
"@types/express": "^4.17.13",
"@types/passport": "^1.0.9",
"@types/passport-strategy": "^0.2.35",
"@types/ws": "^8.5.3",
"express": "^4.18.1",
"graphql": "^16.5.0",
"subscriptions-transport-ws": "^0.9.19",
"ws": "8.x"
},
"peerDependencies": {
"express": "4.x",
"passport": "0.x",
"subscriptions-transport-ws": "0.x",
"ws": "8.x"
}
}