-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 KB
/
package.json
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
{
"name": "cockpit-backend",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "https://github.com/XelticaMC/cockpit-backend",
"author": "Xeltica",
"license": "AGPL",
"private": true,
"scripts": {
"build": "tsc",
"start": "node ./built/index.js",
"dev": "nodemon"
},
"dependencies": {
"@types/websocket": "^1.0.5",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"immer": "^9.0.12",
"js-yaml": "^4.1.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-multer": "^1.0.2",
"koa-router": "^10.1.1",
"log4js": "^6.4.2",
"node-fetch": "^3.2.1",
"reflect-metadata": "^0.1.13",
"rfdc": "^1.3.0",
"routing-controllers": "^0.9.0",
"websocket": "^1.0.34"
},
"devDependencies": {
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.6",
"@types/koa-router": "^7.4.4",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"typescript": "^4.6.2"
}
}