-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "backend",
"version": "0.0.1",
"description": "",
"main": "dist/app.js",
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"dev": "nodemon --watch src src/app.ts",
"test": "npx jest",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bergflix-Remake/partymode-backend.git"
},
"author": "Bergflix. Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/Bergflix-Remake/partymode-backend.git/issues"
},
"homepage": "https://bergflix.de",
"dependencies": {
"@types/swagger-ui-express": "^4.1.3",
"axios": "^1.2.1",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"redis": "^4.5.1",
"socket.io": "^4.5.2",
"swagger-ui-express": "^4.5.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@swc-node/register": "^1.5.2",
"@swc/core": "^1.3.4",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/node": "^14.11.10",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"jest": "^29.1.2",
"nodemon": "^2.0.20",
"socketio-doc": "^1.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.0.3"
}
}