-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.17 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.17 KB
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
{
"name": "interconnected_desktop_client",
"version": "1.0.0",
"description": "",
"main": "./lib/index.js",
"scripts": {
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q lib/index.js\"",
"build": "tsc -p .",
"start:production": "node ./lib/index.js",
"prettier:write": "npx prettier --write **/*.{js,jsx,ts,tsx,json} && npx prettier --write *.{js,jsx,ts,tsx,json}",
"lint": "tsc --noEmit && npx eslint --ext .js,.jsx,.ts,.tsx ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tale152/interconnected_desktop_client.git"
},
"author": "Alessandro Talmi",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tale152/interconnected_desktop_client/issues"
},
"homepage": "https://github.com/Tale152/interconnected_desktop_client#readme",
"devDependencies": {
"@types/node": "^18.7.23",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"concurrently": "^7.5.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"interconnected_node": "0.0.19",
"uuid": "^9.0.0",
"wrtc": "^0.4.7"
}
}