summary refs log tree commit diff
path: root/bundle/package.json
blob: 83f261162f62c217c8d2f6a967742d816be492a8 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
	"name": "@fosscord/server",
	"version": "1.0.0",
	"description": "",
	"main": "src/start.js",
	"scripts": {
		"preinstall": "cd ../util && npm i && cd ../api && npm i && cd ../cdn && npm i && cd ../gateway && npm i",
		"build": "npm run build:util && npm run build:api && npm run build:cdn && npm run build:gateway && npm run build:bundle",
		"build:bundle": "npx tsc -b .",
		"build:util": "cd ../util/ && npm run build",
		"build:api": "cd ../api/ && npm run build",
		"build:cdn": "cd ../cdn/ && npm run build",
		"build:gateway": "cd ../gateway/ && npm run build",
		"start": "npm run build && npm run start:bundle",
		"start:bundle": "node -r ./tsconfig-paths-bootstrap.js 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/amqplib": "^0.8.1",
		"@types/async-exit-hook": "^2.0.0",
		"@types/bcrypt": "^5.0.0",
		"@types/express": "^4.17.9",
		"@types/i18next-node-fs-backend": "^2.1.0",
		"@types/jsonwebtoken": "^8.5.0",
		"@types/mongodb": "^3.6.9",
		"@types/mongoose-autopopulate": "^0.10.1",
		"@types/mongoose-lean-virtuals": "^0.5.1",
		"@types/multer": "^1.4.5",
		"@types/node": "^14.17.9",
		"@types/node-fetch": "^2.5.7",
		"@types/node-os-utils": "^1.2.0",
		"@types/uuid": "^8.3.0",
		"@types/ws": "^7.4.0",
		"@zerollup/ts-transform-paths": "^1.7.18",
		"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",
		"missing-native-js-functions": "^1.2.15",
		"node-os-utils": "^1.3.5",
		"tsconfig-paths": "^3.11.0"
	}
}