-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
75 lines (75 loc) · 2.33 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"build:image": "docker build -t searchemoji:latest .",
"deploy:image": "npm run build && docker buildx build --platform linux/amd64,linux/arm64 -t dongnaebi/searchemoji:latest --push .",
"dev": "nuxt dev",
"generate": "nuxt generate",
"generateEmojiData": "tsx ./scripts/generateEmojiData.ts",
"generateKeywords": "tsx ./scripts/generateKeywords.ts",
"generateGroupName": "tsx ./scripts/generateGroupName.ts",
"generateLocale": "tsx ./scripts/generateLocale.ts",
"preview": "nuxt preview",
"preview:docker": "docker stop searchemoji | xargs docker rm & docker run -d -p 8081:8081 --name searchemoji searchemoji:latest",
"postinstall": "nuxt prepare",
"prepare": "husky install",
"copyData": "tsx ./scripts/copyFile.ts"
},
"lint-staged": {
"*.{ts,js,vue,tsx,jsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^18.4.1",
"@commitlint/config-conventional": "^18.4.0",
"@iconify/json": "^2.2.140",
"@iconify/tailwind": "^0.1.3",
"@nuxt/devtools": "latest",
"@nuxtjs/color-mode": "^3.3.0",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/google-fonts": "^3.0.2",
"@nuxtjs/i18n": "^8.0.0",
"@nuxtjs/seo": "2.0.0-rc.4",
"@nuxtjs/tailwindcss": "^6.9.4",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"dotenv": "^16.3.1",
"eslint": "^8.53.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.18.1",
"eventsource-parser": "^1.1.1",
"husky": "^8.0.0",
"json-stringify-pretty-compact": "^4.0.0",
"nuxt": "^3.9.1",
"nuxt-schema-org": "3.2.3",
"nuxt-gtag": "^1.1.1",
"prettier": "^3.0.3",
"tsx": "^4.1.1",
"typescript": "^5.2.2",
"undici": "^5.27.2",
"vue": "^3.4.13",
"vue-eslint-parser": "^9.3.2",
"vue-router": "^4.2.5",
"zx": "^7.2.3"
},
"dependencies": {
"@akryum/flexsearch-es": "^0.7.32",
"@vueuse/core": "^10.6.1"
}
}