-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.51 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
{
"name": "hasura-auth-server",
"version": "0.1.1",
"description": "Webhook Authentication Server for Hasura",
"main": "server.js",
"scripts": {
"start-ts-node-dev": "ts-node-dev --project tsconfig.json src/server.ts",
"start-production": "ts-node --transpile-only --project tsconfig.json src/server.ts",
"test": "jest --coverage",
"release": "standard-version --sign",
"release-dry-run": "standard-version --sign --dry-run",
"owasp": "owasp-dependency-check --project \"hasura-auth-server\" -f HTML -o dependency-check-report.html"
},
"homepage": "https://github.com/Panzer1119/hasura-auth-server#readme",
"keywords": [],
"author": {
"name": "Paul Hagedorn",
"email": "[email protected]"
},
"license": "Apache-2.0",
"jest": {
"collectCoverage": true,
"testResultsProcessor": "jest-sonar-reporter"
},
"repository": {
"type": "git",
"url": "https://github.com/Panzer1119/hasura-auth-server"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/node": "^16.3.0",
"@types/request": "^2.48.6",
"@types/typescript": "^2.0.0",
"@types/uuid": "^8.3.1",
"jest": "^27.0.6",
"owasp-dependency-check": "^0.0.18",
"standard-version": "^9.3.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"request": "^2.88.2",
"ts-node": "^10.0.0",
"tslib": "^2.3.0",
"uuid": "^8.3"
}
}