forked from git-ced/gurant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2 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
{
"version": "1.1.3",
"types": "dist/types/index.d.ts",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"repository": "https://github.com/git-ced/gurant.git",
"keywords": [
"oauth",
"oauth2",
"authorization",
"authorization-code-grant"
],
"scripts": {
"dev": "nodemon",
"start": "yarn build && node ./dist/cjs",
"prepublish": "yarn build",
"build": "yarn graphql:generate && pridepack build",
"type-check": "pridepack check",
"lint": "pridepack lint",
"test": "pridepack test --passWithNoTests",
"clean": "pridepack clean",
"watch": "pridepack watch",
"graphql:generate": "graphql-codegen"
},
"license": "MIT",
"name": "gurant",
"devDependencies": {
"@graphql-codegen/cli": "^1.19.3",
"@graphql-codegen/typed-document-node": "^1.18.1",
"@graphql-codegen/typescript": "^1.18.1",
"@graphql-codegen/typescript-graphql-files-modules": "^1.18.1",
"@graphql-codegen/typescript-graphql-request": "^2.0.3",
"@graphql-codegen/typescript-operations": "^1.17.12",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/uuid": "^8.3.1",
"eslint": "^7.23.0",
"eslint-config-lxsmnsyc": "^0.1.20",
"nodemon": "^2.0.12",
"pridepack": "^0.9.2",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
},
"peerDependencies": {},
"dependencies": {
"axios": "^0.21.1",
"date-fns": "^2.23.0",
"dotenv": "^10.0.0",
"ecdsa-secp256r1": "^1.3.3",
"fastify": "^3.14.1",
"fastify-cors": "^5.2.0",
"fastify-formbody": "^5.1.0",
"fastify-healthcheck": "^3.1.0",
"fastify-helmet": "^5.3.1",
"firebase-admin": "^9.11.1",
"graphql": "^15.5.1",
"graphql-request": "^3.4.0",
"graphql-tag": "^2.12.5",
"jose": "^3.15.4",
"query-string": "^7.0.1",
"uuid": "^8.3.2"
},
"private": false
}