-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 KB
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
{
"author": "Philippe Perez",
"description": "",
"name": "api-authentication-email-demo",
"private": false,
"type": "module",
"version": "0.1.0",
"exports": {
".": {
"import": "./dist/application-template.mjs",
"require": "./dist/application-template.umd.js"
}
},
"scripts": {
"build": "vite build",
"deploy": "scp -r ./dist/* root@root@server1.philippe-perez.com:/var/www/api-authentication-email-demo.com",
"dev": "vite",
"preview": "vite preview",
"setup": "npm install",
"test": "vitest"
},
"dependencies": {
"highlight.js": "^11.11.1",
"vue": "^3.5.12",
"vue-component-toolkit": "^0.1.29",
"vue-i18n": "^11.0.0-beta.2",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.4",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.20",
"jsdom": "^25.0.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"vite": "^5.4.11",
"vite-plugin-vue-devtools": "^7.5.4",
"vitest": "^2.1.8"
}
}