-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.92 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
{
"name": "git-anon",
"version": "1.0.4",
"description": "Track personal commit statistics without sharing company code",
"author": "3urobeat",
"license": "GPL-3.0",
"homepage": "https://github.com/3urobeat",
"repository": "https://github.com/3urobeat/git-anon",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev --host 0.0.0.0",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"start": "node .output/server/index.mjs",
"bs": "npm run build && npm run start",
"update": "git pull && npm i && npm run build",
"get-version": "grep \"\\\"version\\\":\" package.json | awk '{split($0,a,\" \"); print $2}' | sed -r 's/\"|,//g'",
"docker-build": "docker build -t 3urobeat/git-anon:latest -t 3urobeat/git-anon:$(npm run get-version | tail -n 1) .",
"docker-start": "docker run -p 3000:3000 -v ~/git-anon-data:/usr/src/git-anon/data 3urobeat/git-anon:latest",
"docker-bs": "npm run docker-build && npm run docker-start",
"docker-push": "docker image push 3urobeat/git-anon:latest && docker image push 3urobeat/git-anon:$(npm run get-version | tail -n 1)"
},
"keywords": [
"git",
"anonymous"
],
"bugs": {
"url": "https://github.com/3urobeat/git-anon/issues"
},
"dependencies": {
"@nuxtjs/device": "^3.2.4",
"@nuxtjs/tailwindcss": "^6.12.2",
"@phosphor-icons/vue": "^2.2.1",
"@seald-io/nedb": "^4.0.4",
"ini": "^5.0.0",
"nuxt": "^3.14.1592",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@nuxt/devtools": "latest",
"@types/ini": "^4.1.1",
"@types/node": "^22.10.2",
"@typescript-eslint/parser": "^8.18.0",
"@vueuse/core": "^12.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-plugin-jsdoc": "^50.6.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
}
}