-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.57 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "living-room",
"version": "1.0.0",
"description": "",
"type": "module",
"source": [
"src/server/server.js"
],
"scripts": {
"start-server": "cross-env ENV=DEV PORT=5555 NODE_OPTIONS='--experimental-specifier-resolution=node' node src/server/server.js",
"start-tv": "cross-env ENV=DEV PORT=1234 parcel src/projector/tv/index.html --dist-dir ./dist/tv",
"start-dashboard": "cross-env ENV=DEV PORT=7777 parcel src/dashboard/index.html --dist-dir ./dist/dashboard",
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest --passWithNoTests",
"prestart-translator": "npm install",
"pretest": "npm install",
"start": "docker image prune -a -f && docker-compose up -d --build && docker compose logs --follow --tail 1000",
"setup": "docker volume create nodemodules && docker-compose -f docker-compose.builder.yml run --rm install",
"start_insideDocker": "cross-env ENV=DEV PORT=5555 NODE_OPTIONS='--experimental-specifier-resolution=node' nodemon -L src/server/server.js",
"start-tv_insideDocker": "cross-env ENV=DEV PORT=4321 parcel src/tv/index.html --dist-dir ./dist/tv --hmr-port 1235",
"lint": "npx eslint src/",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arkhe-rit/living-room.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/arkhe-rit/living-room/issues"
},
"homepage": "https://github.com/arkhe-rit/living-room#readme",
"devDependencies": {
"@parcel/transformer-glsl": "^2.7.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"assert": "^2.0.0",
"eslint": "^8.45.0",
"events": "^3.3.0",
"jest": "^29.6.1",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"stream-http": "^3.2.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6",
"url": "^0.11.0",
"util": "^0.12.4"
},
"dependencies": {
"@koa/router": "^12.0.0",
"@socket.io/redis-adapter": "^8.2.1",
"aedes": "^0.48.0",
"buffer": "^6.0.3",
"cross-env": "^7.0.3",
"express": "^4.18.1",
"koa": "^2.13.4",
"lodash": "^4.17.21",
"nodemon": "^2.0.22",
"observable-fns": "^0.6.1",
"parcel": "^2.7.0",
"redis": "^4.6.7",
"socket.io": "^4.5.1",
"socket.io-client": "^4.7.2"
},
"jest": {
"transform": {}
}
}