-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "mono-turbo-vue-firebase",
"version": "0.0.0",
"author": {
"name": "Psycarlo",
"email": "psycarlo1@gmail.com"
},
"description": "An example for a monorepo with turborepo, vuejs and firebase that deploys using Github Actions",
"license": "MIT",
"private": true,
"scripts": {
"format": "prettier --check \"**/*.{js,ts,vue,md}\"",
"format:fix": "prettier --write \"**/*.{js,ts,vue,md}\"",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"emulators": "concurrently \"firebase emulators:start --project demo-words\" \"turbo run emulators\"",
"dev": "turbo run dev",
"build": "turbo run build"
},
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"concurrently": "^8.2.2",
"firebase-tools": "^12.7.0",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"turbo": "^1.10.16"
},
"keywords": [
"Monorepo",
"Turborepo",
"Vue",
"Firebase",
"Github Actions"
],
"packageManager": "pnpm@8.6.10"
}