-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 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
39
40
41
42
43
44
45
{
"name": "kibblexr-server",
"version": "1.0.0",
"description": "Data synchronization server for kibblxr ",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p ./",
"dev": "set HTTPS=true && ts-node-dev --respawn ./src/index.ts -d",
"start": "node ./build/index.js -p 8440"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DreaJulca/kibblexr-server.git"
},
"author": "Andrea Batch",
"license": "MIT",
"bugs": {
"url": "https://github.com/DreaJulca/kibblexr-server/issues"
},
"homepage": "https://github.com/DreaJulca/kibblexr-server#readme",
"dependencies": {
"@types/ws": "8.2.2",
"chalk": "4.1.2",
"commander": "6.2.1",
"express": "4.17.1",
"socket.io": "3.0.5",
"tedis": "0.1.12",
"ws": "8.4.2"
},
"devDependencies": {
"@types/commander": "2.12.2",
"@types/express": "4.17.13",
"@types/node": "14.14.20",
"@types/socket.io": "2.1.13",
"@typescript-eslint/eslint-plugin": "4.13.0",
"@typescript-eslint/parser": "4.13.0",
"eslint": "7.17.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-prettier": "3.3.1",
"prettier": "2.2.1",
"ts-node-dev": "1.1.1",
"typescript": "4.1.3"
}
}