-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.4 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
54
55
56
{
"name": "camstudy-webrtc-router",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon --exec node --loader ts-node/esm src/app.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Foundy-LLC/camstudy-webrtc-router.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Foundy-LLC/camstudy-webrtc-router/issues"
},
"homepage": "https://github.com/Foundy-LLC/camstudy-webrtc-router#readme",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"http": "^0.0.1-security",
"nodemon": "^2.0.22",
"socket.io": "^4.6.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.2",
"@types/socket.io": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}