-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "vs-code-backend",
"version": "1.0.0",
"description": "backend for a explorviz vscode extension",
"main": "dist/app.js",
"scripts": {
"dev": "nodemon src/*",
"start": "tsc && node dist/app.js",
"lint": "eslint . --ext .ts",
"test": "nyc mocha -r ts-node/register src/test/*"
},
"repository": {
"type": "git",
"url": "https://git.se.informatik.uni-kiel.de/ExplorViz/code/vs-code-backend.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"chai": "^4.3.7",
"eslint": "^8.39.0",
"mocha": "^10.2.0",
"nodeman": "^1.1.2",
"nodemon": "^2.0.22",
"nyc": "^15.1.0",
"pino-pretty": "^10.0.0",
"socket.io-client": "^4.6.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"pino": "^8.12.1",
"socket.io": "^4.6.1",
"unique-names-generator": "^4.7.1"
}
}