-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.96 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
{
"name": "never-have-i-ever-vue",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"build-serve": "npm run build && npm run gen-pwa-all && npm run serve",
"install-cert": "mkcert -install && mkdir certs && cd certs/ && mkcert localhost",
"deploy": "npm run build && npm run gen-pwa-all && firebase deploy",
"gen-pwa-all": "npm run gen-pwa-splash && npm run gen-pwa-favicon && npm run gen-pwa-icons",
"gen-pwa-splash": "pwa-asset-generator ./assets/splash-screen-icon.svg ./dist/img/splash --splash-only --quality 100 --padding \"15%\" --index ./dist/index.html --path-override \"./img/splash\" --background \"linear-gradient(125deg, #f67730 0, #dd1c4e 50%, #24adb5 100%)\"",
"gen-pwa-favicon": "pwa-asset-generator ./assets/fire.svg ./dist/img/icons --icon-only --favicon --type png --opaque false --padding \"0%\" --path-override \"./img/icons\" --index ./dist/index.html",
"gen-pwa-icons": "pwa-asset-generator ./assets/fire-white.svg ./dist/img/icons --icon-only --maskable false --type png --path-override \"./img/icons\" --index ./dist/index.html --manifest ./dist/manifest.webmanifest --background \"linear-gradient(125deg, #f67730 0, #dd1c4e 50%, #24adb5 100%)\""
},
"dependencies": {
"@arbel/firebase-orm": "^1.4.4",
"@arbel/firesql": "^1.0.3",
"@heroicons/vue": "^1.0.0",
"firebase": "^8.3.2",
"moment": "^2.29.1",
"rxfire": "^3.13.5",
"rxjs": "^6.6.7",
"vue": "^3.0.5",
"vue-router": "^4.0.5",
"vuex": "^4.0.0"
},
"devDependencies": {
"@types/node": "^14.14.39",
"@vitejs/plugin-vue": "^1.2.1",
"@vue/compiler-sfc": "^3.0.5",
"autoprefixer": "^10.2.5",
"firebase-tools": "^9.8.0",
"http-server": "^0.12.3",
"postcss": "^8.2.9",
"pwa-asset-generator": "^4.1.1",
"sass": "^1.32.8",
"tailwindcss": "^2.0.4",
"typescript": "^4.1.3",
"vite": "^2.1.5",
"vite-plugin-pwa": "^0.7.2",
"vue-tsc": "^0.0.15"
}
}