-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "vue-firebase-starter",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:chromium": "npx playwright test --project=chromium",
"test:e2e:ui": "playwright test --ui",
"firebase:emulators": "firebase emulators:start --project demo-test",
"firebase:emulators:ci": "firebase emulators:start --project demo-test",
"deploy": "./scripts/verify-env.sh && npm run build && firebase deploy",
"deploy:rules": "firebase deploy --only firestore:rules",
"deploy:storage-rules": "firebase deploy --only storage",
"deploy:all-rules": "firebase deploy --only firestore:rules,storage",
"deploy:hosting": "./scripts/verify-env.sh && npm run build && firebase deploy --only hosting",
"secrets:scan": "secretlint \"**/*\""
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*": "secretlint"
},
"dependencies": {
"firebase": "12.9.0",
"pinia": "^2.1.7",
"vue": "^3.5.28",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@pinia/testing": "^0.1.7",
"@playwright/test": "^1.58.2",
"@secretlint/secretlint-rule-preset-recommend": "^11.3.1",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/vue": "^8.1.0",
"@vitejs/plugin-vue": "^6.0.4",
"@vitest/coverage-v8": "^4.0.18",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.39.2",
"eslint-plugin-vue": "^10.8.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.2.7",
"secretlint": "^11.3.1",
"tailwindcss": "^4.1.18",
"typescript": "^5.3.3",
"typescript-eslint": "^8.55.0",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"vue-tsc": "^2.0.0"
}
}