-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
82 lines (82 loc) · 1.99 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
80
81
82
{
"name": "graphql-directive-auth",
"version": "0.3.2",
"description": "GraphQL directive auth",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com:graphql-community/graphql-directive-auth.git"
},
"author": "Czysty <[email protected]>",
"license": "MIT",
"typings": "./dist/index.d.ts",
"scripts": {
"dev": "nodemon example/dev.js",
"test": "jest",
"build": "tsc",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"build:types": "tsc --emitDeclarationOnly",
"token": "node generateToken",
"prepublish": "yarn build"
},
"peerDependencies": {
"graphql": "^0.13.2",
"graphql-tools": "^3.0.5"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/register": "^7.0.0",
"@types/jsonwebtoken": "^7.2.8",
"apollo-server-express": "^2.0.0",
"body-parser": "^1.18.3",
"eslint": "^5.2.0",
"eslint-config-callstack-io": "^1.1.2",
"express": "^4.16.4",
"graphql": "^15.0.0",
"graphql-tools": "^5.0.0",
"jest": "^25.4.0",
"mock-express-request": "^0.2.2",
"nock": "^10.0.2",
"nodemon": "^1.18.7",
"ts-jest": "^25.4.0",
"typescript": "^3.1.6"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"jsonwebtoken": "^8.4.0"
},
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts?$",
"testURL": "http://localhost",
"moduleDirectories": [
"node_modules"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"globals": {
"APP_SECRET": "123",
"ts-jest": {
"diagnostics": false
}
},
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
}
}