-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.08 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.08 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
{
"name": "bluepro-api",
"version": "1.0.0",
"description": "API for the popular upcoming game Blue Protocol",
"private": true,
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "node dist",
"build": "tsc",
"dev": "tsx watch src/index.ts",
"watch": "tsc -w",
"test": "set NODE_ENV=test&& ava ",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arkezz/BluPro-API.git"
},
"author": "Wuzzy",
"license": "OSL-3.0",
"dependencies": {
"@koa/cors": "^5.0.0",
"chalk": "5.3.0",
"keyv": "^4.5.4",
"koa": "^2.15.0",
"koa-body": "^6.0.1",
"koa-compress": "^5.1.1",
"koa-conditional-get": "^3.0.0",
"koa-etag": "^4.0.0",
"koa-favicon": "^2.1.0",
"koa-helmet": "^7.0.2",
"koa-router": "^12.0.1",
"mime-types": "^2.1.35",
"pino": "8.17.2",
"pino-pretty": "^10.3.1",
"sharp": "^0.33.1",
"typescript": "^5.3.3"
},
"devDependencies": {
"@ava/typescript": "^4.1.0",
"@types/koa": "^2.13.12",
"@types/koa-compress": "^4.0.6",
"@types/koa-conditional-get": "^2.0.3",
"@types/koa-etag": "^3.0.3",
"@types/koa-favicon": "^2.1.3",
"@types/koa-helmet": "^6.0.8",
"@types/koa-router": "^7.4.8",
"@types/koa__cors": "^5.0.0",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.10.6",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"ava": "^6.0.1",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^50.0.1",
"globals": "^13.24.0",
"prettier": "^3.1.1",
"supertest": "^6.3.3",
"tsx": "^4.7.0",
"typescript-eslint": "^7.1.1"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": false
}
},
"engines": {
"node": ">= 10"
}
}