-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.42 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
{
"name": "palatepanda",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"type-check": "tsc --noEmit -p tsconfig.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write .",
"commit-only": "cz",
"checks-only": "run-p format lint type-check",
"commit": "run-s checks-only commit-only",
"push-only": "git push",
"push": "run-s checks-only push-only"
},
"devDependencies": {
"@nuxt/devtools": "^1.3.9",
"@nuxtjs/device": "^3.1.1",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/tailwindcss": "^6.12.0",
"@vite-pwa/nuxt": "^0.8.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vueuse/core": "^10.10.0",
"@vueuse/nuxt": "^10.10.0",
"commitizen": "^4.3.0",
"eslint-plugin-vue": "^9.26.0",
"npm-run-all": "^4.1.5",
"nuxt": "^3.12.4",
"prettier": "^3.3.1",
"tailwind-material-colors": "^3.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@jamescoyle/vue-icon": "^0.1.2",
"@mdi/js": "^7.4.47",
"firebase": "^10.12.2",
"marked": "^13.0.3",
"nuxt-vuefire": "^1.0.2",
"vuefire": "^3.1.23"
}
}