forked from curityio/oauth-agent-node-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "oauth-agent-node-nextjs",
"version": "1.0.0",
"description": "An OAuth Agent that runs on the Next.js web server",
"author": "Curity AB",
"license": "Apache-2.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"wiremock": "wiremock --root-dir test/integration --port 8443",
"test": "mocha -r ts-node/register test/integration/**.ts"
},
"dependencies": {
"base64url": "^3.0.1",
"cookie": "^0.5.0",
"cors": "^2.8.5",
"jose": "^4.14.4",
"next": "^12.2.0",
"node-fetch": "^2.6.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"swr": "^1.3.0",
"url-parse": "^1.5.10"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/cookie": "^0.5.1",
"@types/cors": "^2.8.12",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.14",
"@types/set-cookie-parser": "^2.4.2",
"@types/url-parse": "^1.4.8",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"set-cookie-parser": "^2.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.5",
"wiremock": "^2.35.0"
}
}