-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.24 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
{
"name": "fuzzy-engine",
"version": "1.9.0",
"description": "Docker registry UI made with love",
"author": "Tchoupinax <[email protected]> (https://corentinfiloche.xyz)",
"licence": "MIT",
"keywords": [
"docker",
"docker-registry",
"dockerui"
],
"homepage": "https://fuzzy-engine.corentinfiloche.xyz",
"repository": {
"type": "git",
"url": "https://github.com/Tchoupinax/fuzzy-engine"
},
"bugs": {
"url": "https://github.com/Tchoupinax/fuzzy-engine/issues"
},
"private": true,
"scripts": {
"build": "nuxi build && npx tsc --noEmit",
"docker:build": "docker buildx build --platform linux/amd64,linux/arm64 -t tchoupinax/fuzzy-engine . --push",
"lint": "yarn lint:vue:check && yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint .",
"lint:fix": "yarn lint:eslint --fix && prettier --write .",
"lint:inspect": "npx @eslint/config-inspector@latest",
"lint:prettier": "prettier . --check",
"lint:vue:check": "vue-tsc --noEmit",
"nuke": "rm -rf yarn.lock node_modules/ .dist .output .nuxt",
"start": "NODE_ENV=production node server/index.js",
"test": "bash -c 'source .env && vitest'",
"watch": "bash -c 'source .env && nuxi dev'"
},
"dependencies": {
"@aws-sdk/client-ecr": "3.624.0",
"@nuxtjs/robots": "4.1.3",
"@nuxtjs/sitemap": "5.3.5",
"@swan-io/boxed": "2.3.0",
"axios": "1.7.3",
"cookieparser": "0.1.0",
"express": "4.19.2",
"js-cookie": "3.0.5",
"lodash.debounce": "4.0.8",
"mini-toastr": "0.8.1",
"pino": "9.3.2",
"pino-pretty": "11.2.2",
"pretty-bytes": "6.1.1",
"prom-client": "15.1.3",
"timeago.js": "4.0.2",
"ts-pattern": "5.3.1",
"vue-notifications": "1.0.2"
},
"devDependencies": {
"@nuxt/eslint": "0.5.0",
"@nuxtjs/tailwindcss": "6.8.0",
"@types/lodash.debounce": "^4.0.9",
"@vue/test-utils": "2.4.6",
"autoprefixer": "10.4.20",
"babel-eslint": "10.1.0",
"defu": "6.1.4",
"eslint": "9.8.0",
"eslint-plugin-perfectionist": "^3.1.3",
"eslint-plugin-vue": "9.27.0",
"nodemon": "3.1.4",
"nuxt": "3.12.4",
"prettier": "3.3.3",
"typescript": "5",
"vite-plugin-eslint": "1.8.1",
"vitest": "2.0.5",
"vue-tsc": "2.0.29"
}
}