summary refs log tree commit diff
path: root/package.json
blob: 52cb522244f1957288171afed1b4f2e35fbe81c5 (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-api",
	"version": "1.0.0",
	"description": "This repository contains the HTTP API Server",
	"main": "index.js",
	"scripts": {
		"test": "jest",
		"test:watch": "jest --watch",
		"start": "npm run build && node dist/",
		"build": "tsc -b .",
		"postinstall": "patch-package"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/fosscord/fosscord-api.git"
	},
	"keywords": [],
	"author": "",
	"license": "ISC",
	"bugs": {
		"url": "https://github.com/fosscord/fosscord-api/issues"
	},
	"homepage": "https://github.com/fosscord/fosscord-api#readme",
	"dependencies": {
		"@types/jest": "^26.0.22",
		"bcrypt": "^5.0.0",
		"body-parser": "^1.19.0",
		"dotenv": "^8.2.0",
		"express": "^4.17.1",
		"express-validator": "^6.9.2",
		"fosscord-server-util": "github:fosscord/fosscord-server-util#35da56a",
		"i18next": "^19.8.5",
		"i18next-http-middleware": "^3.1.0",
		"i18next-node-fs-backend": "^2.1.3",
		"jsonwebtoken": "^8.5.1",
		"lambert-db": "^1.1.8",
		"lambert-server": "^1.0.10",
		"missing-native-js-functions": "^1.2.4",
		"mongodb": "^3.6.4",
		"mongoose-long": "^0.3.2",
		"multer": "^1.4.2",
		"patch-package": "^6.2.2"
	},
	"devDependencies": {
		"@types/bcrypt": "^3.0.0",
		"@types/express": "^4.17.9",
		"@types/i18next-node-fs-backend": "^2.1.0",
		"@types/jsonwebtoken": "^8.5.0",
		"@types/multer": "^1.4.5",
		"@types/node": "^14.14.22",
		"@types/node-fetch": "^2.5.7",
		"@zerollup/ts-transform-paths": "^1.7.18",
		"0x": "^4.10.2",
		"jest": "^26.6.3",
		"node-fetch": "^2.6.1",
		"ts-node": "^9.1.1",
		"typescript": "^4.1.2"
	}
}