-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
44
45
46
47
48
49
50
51
52
53
{
"name": "@mcdata/rest-api",
"version": "3.0.0",
"description": "McData api for handling requests and data.",
"main": "src/app.ts",
"repository": {
"type": "git",
"url": "https://github.com/McData-Development/mcdata-api.git"
},
"author": {
"name": "McData Development",
"url": "https://github.com/mcdata-dev"
},
"license": "GPL-3.0-only",
"scripts": {
"dev": "nodemon src/app.ts",
"start": "node build/app.js",
"build": "tsc --build",
"format": "prettier --write .",
"lint": "eslint .",
"test": "vitest run --coverage"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.12",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "9.x",
"globals": "^15.7.0",
"nodemon": "^2.0.20",
"prettier": "^3.3.2",
"ts-node": "^10.9.1",
"tslib": "^2.6.3",
"typescript": "^4.9.4",
"typescript-eslint": "^7.14.1",
"vitest": "^1.6.0"
},
"dependencies": {
"@mcdata/data": "^1.0.5",
"@prisma/client": "^4.7.1",
"axios": "1.1.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"hallo-logger": "^1.1.0",
"helmet": "^6.0.1",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"uuid": "^9.0.0"
}
}