-
-
Notifications
You must be signed in to change notification settings - Fork 242
/
package.json
70 lines (70 loc) · 2.37 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
{
"name": "briefing",
"version": "2.0.20",
"private": true,
"description": "Secure direct video chat",
"repository": {
"type": "git",
"url": "https://github.com/holtwick/briefing.git"
},
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/holtwick"
},
"license": "EUPL-1.2",
"author": {
"name": "Dirk Holtwick",
"email": "[email protected]",
"url": "https://holtwick.de"
},
"type": "module",
"scripts": {
"build": "cross-env MODE=production nr build:basis",
"build:basis": "nr clean && zerva build src/zerva/index.ts && vite build --mode $MODE",
"build:docker": "cross-env MODE=production-docker nr build:basis && ./scripts/make-docker.sh",
"check": "vue-tsc --noEmit",
"clean": "rm -rf dist www",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"reset": "rm -rf node_modules pnpm-lock.yaml dist dist_www www",
"serve": "cross-env ZEED=* LEVEL=i node dist/main.cjs",
"start": "cross-env ZEED=* LEVEL=a zerva src/zerva/index.ts",
"test": "cross-env ZEED=* LEVEL=i vitest -r src --globals",
"upload:dockerhub": "nr build:docker && cd docker && docker buildx build --platform linux/arm64,linux/amd64,linux/s390x,linux/arm/v7,linux/arm/v6 -t holtwick/briefing:$npm_package_version -t holtwick/briefing:latest --push .",
"upload:production": "nr build && rsync -rvz --exclude-from=.rsyncignore * docker-dev:briefing",
"upload:stage": "cross-env MODE=stage nr build:basis && rsync -rvz --exclude-from=.rsyncignore * docker-pro:briefing"
},
"dependencies": {
"@sentry/browser": "^7.14.0",
"@sentry/tracing": "^7.14.0",
"@zerva/core": "^0.14.2",
"@zerva/http": "^0.14.2",
"@zerva/websocket": "^0.14.2",
"clipboard-copy": "^4.0.1",
"lodash": "^4.17.21",
"vue": "^2.7.10",
"zeed": "^0.8.31"
},
"devDependencies": {
"@antfu/eslint-config": "^0.27.0",
"@antfu/ni": "^0.18.2",
"@types/node": "^18.7.23",
"@vitejs/plugin-vue2": "^2.0.0",
"@zerva/bin": "^0.14.2",
"@zerva/vite": "^0.14.2",
"cross-env": "^7.0.3",
"eslint": "^8.24.0",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"tsc": "^2.0.4",
"typescript": "^4.8.4",
"vite": "^3.1.4",
"vitest": "^0.23.4",
"vue-tsc": "^0.40.13"
},
"engines": {
"node": ">=16.0.0"
}
}