forked from udplabs/cic-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1006 Bytes
/
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": "auth-rocks-app",
"version": "1.0.0",
"description": "Template vanilla JS application using ViteJS.",
"repository": {
"url": "https://github.com/udplabs/auth-rocks-app-template"
},
"main": "main.js",
"type": "module",
"scripts": {
"start": "npm run dev",
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"keywords": [
"okta",
"auth.rocks",
"auth0",
"auth"
],
"author": "Danny Fuhriman",
"license": "MIT",
"devDependencies": {
"@auth0/auth0-spa-js": "^2.0.0",
"vite": "^3.1.8",
"vite-plugin-mix": "^0.4.0"
},
"dependencies": {
"@okta/jwt-verifier": "^2.6.0",
"assert": "^2.0.0",
"axios": "^1.1.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^3.23.3",
"highlight.js": "^11.6.0",
"jsonwebtoken": "^8.5.1",
"jsonwebtoken-wc": "^8.5.1",
"jwks-rsa": "^2.1.5",
"morgan": "^1.10.0",
"node-jose": "^2.1.1"
},
"stackblitz": {
"startCommand": "npm run dev",
"compileTrigger": "save"
}
}