-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
45
46
47
48
49
50
51
52
53
54
{
"name": "emmanuelbeziat",
"version": "9.3.1",
"description": "My website, 2024 version.",
"type": "module",
"author": {
"name": "Emmanuel Béziat",
"email": "[email protected]"
},
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/emmanuelbeziat/emmanuelbeziat.git"
},
"private": false,
"scripts": {
"dev": "vite",
"build": "vite build",
"setup": "npm i && node setup.js",
"preview": "vite preview --port 3033",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"test": "npx vitest --run"
},
"dependencies": {
"@unhead/vue": "^1.11.18",
"core-js": "^3.40.0",
"dayjs": "^1.11.13",
"mobile-device-detect": "^0.4.3",
"modern-normalize": "^3.0.1",
"pinia": "^2.3.0",
"slug": "^10.0.0",
"toastify-js": "^1.12.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vue3-sequential-entrance": "^2.0.2"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^26.0.0",
"vite": "^6.0.7",
"vite-plugin-html": "^3.2.2",
"vite-plugin-pwa": "^0.21.1",
"vite-svg-loader": "^5.1.0",
"vitest": "^3.0.2",
"workbox-precaching": "^7.3.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
}
}