-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.43 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
{
"name": "@fraym/auth",
"version": "0.7.1",
"license": "MIT",
"homepage": "https://github.com/fraym/auth-nodejs",
"repository": {
"type": "git",
"url": "git+https://github.com/fraym/auth-nodejs.git"
},
"description": "nodejs client implementation for our auth service",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"format": "prettier --write \"**/*.{ts,tsx,json}\"",
"lint": "prettier --check \"**/*.{ts,tsx,json}\"",
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"prepublishOnly": "npm test && npm run lint && npm run build",
"preversion": "npm run lint",
"cmd": "dist/cmd/auth.js"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=16"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@fraym/proto": "^0.5.4",
"@graphql-tools/graphql-file-loader": "^7.5.17",
"@graphql-tools/load": "^7.8.14",
"@grpc/grpc-js": "^1.9.3",
"dotenv": "^16.3.1",
"graphql": "^16.8.0",
"jose": "^4.14.6",
"yargs": "^17.7.2"
},
"devDependencies": {
"@becklyn/prettier": "^1.0.2",
"@types/uuid": "^8.3.4",
"@types/yargs": "^17.0.24",
"prettier": "^2.8.8",
"typescript": "^4.9.5",
"uuid": "^9.0.1"
},
"prettier": "@becklyn/prettier"
}