-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.37 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
{
"name": "client-as",
"version": "1.1.4",
"description": "Hellō Client and Authorization Server",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node dist/server.js",
"debug": "node --inspect dist/server.js",
"build": "rimraf dist && tsc -p tsconfig.prod.json",
"release": "npm run build && ./scripts/release.sh",
"playwright": "npm run build && docker compose -f docker-compose.playwright.yml up --build -d && cd playwright && playwright test && docker compose -f ../docker-compose.playwright.yml down",
"test": "OAUTH_DPOP=true mocha -r ts-node/register tests/*.spec.ts && mocha -r ts-node/register tests/refresh-token.spec.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.42.1",
"@types/cookie": "^0.6.0",
"@types/jwk-to-pem": "^2.0.3",
"@types/jws": "^3.2.9",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.28",
"dotenv": "^16.4.5",
"mocha": "^10.3.0",
"playwright": "^1.42.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@fastify/formbody": "^7.4.0",
"@hellocoop/fastify": "^1.12.2",
"@hellocoop/router": "^1.10.0",
"cookie": "^0.6.0",
"fastify": "^4.26.2",
"ioredis": "^5.3.2",
"jwk-to-pem": "^2.0.5",
"jws": "^4.0.0",
"nanoid": "^5.0.6"
}
}