-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.52 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.52 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
41
42
43
44
45
46
47
48
49
{
"name": "site",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite",
"prebuild": "npm run populate:data",
"build": "vite-ssg build",
"build:spa": "vite build",
"preview": "vite preview",
"lint": "eslint . --fix",
"format": "prettier --write src/",
"populate:data": "node scripts/populate-all-data.js",
"populate:services": "node scripts/populate-services.js",
"populate:promotions": "node scripts/populate-promotions.js",
"seed:promotions": "node scripts/seed-promotions.js",
"seed:promotions:clear": "node scripts/seed-promotions.js --clear",
"seed:promotions:help": "node scripts/seed-promotions.js --help"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.0.1",
"@fortawesome/free-brands-svg-icons": "^7.0.1",
"@fortawesome/free-regular-svg-icons": "^7.0.1",
"@fortawesome/free-solid-svg-icons": "^7.0.1",
"@fortawesome/vue-fontawesome": "^3.1.1",
"firebase": "^12.1.0",
"vue": "^3.5.18"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@unhead/vue": "^2.0.14",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/eslint-config-prettier": "^10.2.0",
"eslint": "^9.31.0",
"eslint-plugin-vue": "~10.3.0",
"gh-pages": "^6.3.0",
"globals": "^16.3.0",
"prettier": "3.6.2",
"vite": "^7.0.6",
"vite-plugin-sitemap": "^0.8.2",
"vite-plugin-vue-devtools": "^8.0.0",
"vite-ssg": "^28.1.0",
"vue-router": "^4.5.1"
}
}