-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.31 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
{
"name": "vido-conferencing-with-gesture-based-ar-control",
"version": "0.0.1",
"description": "This project aims to build a server backend for a video conferencing application with support for hand gesture recognition and implementation, which will be used to control and manipulate UX features and AR models.",
"main": "index.js",
"repository": "https://github.com/Project-Own/video-conferencing-with-gesture-controlled-AR.git",
"author": "Sahas Prajapati <b10prajapati@gmail.com>",
"contributors": [
"Nirjal Prajapati <nirjalprajapati@gmail.com>",
"Nirajan Prajapati <prajapatinirajan0@gmail.com>",
"Rohit Prajapati <roht.praz@gmail.com>"
],
"scripts": {
"start": "nodemon build/src/index.js",
"dev": "nodemon src/index.ts",
"build": "tsc --project ./",
"test": "jest"
},
"license": "MIT",
"private": false,
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"nodemon": "^2.0.7",
"socket.io": "^4.1.2",
"socket.io-client": "^4.1.2",
"@types/node": "^15.12.2",
"@types/express": "^4.17.12"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/supertest": "^2.0.11",
"concurrently": "^6.2.0",
"jest": "^27.0.4",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}