-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·106 lines (106 loc) · 2.95 KB
/
package.json
File metadata and controls
executable file
·106 lines (106 loc) · 2.95 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"productName": "Sync-in",
"name": "sync-in-server",
"version": "2.1.0",
"description": "The secure, open-source platform for file storage, sharing, collaboration, and syncing",
"keywords": [
"sync-in",
"self-hosted",
"open-source",
"data-sovereignty",
"cloud-storage",
"privacy-first",
"file-server",
"file-manager",
"file-storage",
"file-sharing",
"file-sync",
"synchronization",
"sync",
"webdav",
"collaboration",
"onlyoffice",
"full-text-search",
"access-control",
"spaces",
"secure-links",
"document-management",
"nextcloud-alternative",
"owncloud-alternative",
"dropbox-alternative"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sync-in"
},
{
"type": "patreon",
"url": "https://patreon.com/sync_in"
},
{
"type": "liberapay",
"url": "https://liberapay.com/sync-in"
},
{
"type": "project",
"url": "https://sync-in.com/support"
}
],
"author": {
"name": "Johan Legrand",
"email": "johan.legrand@sync-in.com"
},
"homepage": "https://sync-in.com",
"repository": {
"type": "git",
"url": "git+https://github.com/Sync-in/server.git"
},
"bugs": {
"url": "https://github.com/Sync-in/server/issues"
},
"license": "AGPL-3.0-or-later",
"private": true,
"os": [
"!win32"
],
"engines": {
"node": ">= 22"
},
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"build": "npm run build --ws",
"release:build": "npm run build && node scripts/build/release.mjs",
"release:clean": "rm -rf release",
"bump:version": "npm run test && commit-and-tag-version",
"bump:version:dry": "npm run test && commit-and-tag-version --dry-run",
"lint": "npm --ws run lint",
"lint:staged": "npm --ws run lint:staged",
"test": "npm --ws run lint && npm -w backend test",
"start": "node dist/server/main.js",
"reset": "rm -Rf frontend/node_modules frontend/.angular backend/node_modules node_modules .angular; npm cache clean --force",
"docker:build": "docker build -t $npm_package_name .",
"docker:buildx": "docker buildx build --platform linux/arm64,linux/amd64 --tag syncin/server:latest --tag syncin/server:${npm_package_version} --tag syncin/server:$(echo ${npm_package_version} | cut -d. -f1) . --push",
"docker:buildx:dev": "docker buildx build --platform linux/arm64,linux/amd64 --tag syncin/server:dev . --push",
"docker:start": "docker run --name sync-in -it --rm -e SKIP_INIT=true -p 8080:8080 -v ./environment/environment.yaml:/app/environment/environment.yaml $npm_package_name"
},
"devDependencies": {
"commit-and-tag-version": "^12.5.1",
"husky": "^9.1.7",
"noop3": "^1000.0.0",
"prettier": "^3.4.1"
},
"overrides": {
"@napi-rs/canvas": "npm:noop3"
},
"commit-and-tag-version": {
"header": "",
"skip": {
"commit": true,
"tag": true
}
}
}