summary refs log tree commit diff
path: root/bundle/package.json
blob: a3478e035e8e35404e6f449cf2c7ff6a1e9f01a9 (plain) (blame)
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
{
	"name": "@fosscord/server",
	"version": "1.0.0",
	"description": "",
	"main": "src/start.js",
	"scripts": {
		"linkInstall": "npm run --prefix ../util/ link && npm run --prefix ../api/ link && npm run --prefix ../cdn/ link && npm run --prefix ../gateway/ link",
		"postinstall": "npm run linkInstall && npm link @fosscord/util && npm link @fosscord/api && npm link @fosscord/gateway && npm link @fosscord/cdn",
		"build": "tsc -b .",
		"start": "npm run build && node dist/start.js",
		"test": "echo \"Error: no test specified\" && exit 1"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/fosscord/fosscord-server.git"
	},
	"keywords": [],
	"author": "Fosscord",
	"license": "AGPLV3",
	"bugs": {
		"url": "https://github.com/fosscord/fosscord-server/issues"
	},
	"homepage": "https://fosscord.com",
	"devDependencies": {
		"@types/async-exit-hook": "^2.0.0",
		"@types/express": "^4.17.13",
		"@types/node": "^16.6.1",
		"@types/node-os-utils": "^1.2.0",
		"typescript": "^4.3.5"
	},
	"dependencies": {
		"@fosscord/api": "file:../api",
		"@fosscord/cdn": "file:../cdn",
		"@fosscord/gateway": "file:../gateway",
		"@fosscord/util": "file:../util",
		"async-exit-hook": "^2.0.1",
		"express": "^4.17.1",
		"link": "^0.1.5",
		"mongodb-memory-server-global-4.4": "^7.3.6",
		"node-os-utils": "^1.3.5"
	}
}