-
Notifications
You must be signed in to change notification settings - Fork 242
/
Copy pathpackage.json
37 lines (37 loc) · 922 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
{
"name": "02-calling-an-api",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vite",
"build": "vite build",
"serve:backend": "node web-server.js",
"serve:client": "vite"
},
"dependencies": {
"@auth0/auth0-vue": "^2.3.0",
"@fortawesome/fontawesome-svg-core": "^6.5.0",
"@fortawesome/free-solid-svg-icons": "^6.5.0",
"@fortawesome/vue-fontawesome": "^3.0.1",
"@highlightjs/vue-plugin": "^2.1.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-oauth2-jwt-bearer": "^1.6.0",
"helmet": "^6.2.0",
"highlight.js": "^11.9.0",
"morgan": "^1.10.0",
"vue": "^3.3.4",
"vue-router": "^4.2.1"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.6.1",
"@vue/compiler-sfc": "^3.3.4",
"npm-run-all": "^4.1.5",
"typescript": "^4.9.3",
"vite": "^2.9.16"
},
"prettier": {
"singleQuote": false,
"semi": true
}
}