-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "@living-room/turing",
"version": "0.7.0",
"description": "all the stuff running in recurse/turing",
"repository": "https://github.com/living-room/turing",
"author": "Jonathan Dahan",
"license": "MIT",
"type": "module",
"engines": {
"node": "16",
"npm": "8"
},
"workspaces": [
"packages/@living-room/client-js",
"packages/@living-room/database-js",
"packages/@living-room/service-js"
],
"scripts": {
"room": "npx room",
"build:install": "npm install --workspaces",
"build:client": "cp packages/@living-room/client-js/src/room.js src/displays/",
"build": "npm-run-all build:install build:client",
"format": "standard --fix 'src/*/*.js'",
"lint": "npm-run-all lint:code lint:doc",
"lint:code": "standard 'src/*/*.js'",
"lint:doc": "alex readme.md",
"start:server": "node server",
"start:coordinator": "node src/coordinator",
"start": "npm-run-all build --parallel start:server start:coordinator",
"assert": "room assert",
"retract": "room retract",
"select": "room select",
"subscribe": "room subscribe",
"test": "npm test --workspaces"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"boxen": "^7.0.0",
"chance": "^1.0.16",
"http-proxy": "^1.17.0",
"node-udp-forwarder": "^0.2.0",
"open": "^8.4.0",
"ping": "^0.4.2",
"serve-handler": "^6.1.3",
"socket.io": "^4.5.1"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"standard": "^17.0.0"
}
}