forked from latitudegames/thoth
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 3.08 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@latitudegames/thoth",
"version": "0.0.1",
"private": true,
"license": "apache 2.0",
"author": "Michael Sharpe <[email protected]> (https://www.project89.org)",
"contributors": [
"Sean Gillespie <[email protected]>",
"Jakob Grant <[email protected]>",
"Preston Gull <[email protected]>"
],
"workspaces": {
"packages": [
"client",
"core",
"server",
"sharedb"
]
},
"scripts": {
"start:core": "lerna exec --scope @latitudegames/thoth-core -- yarn start",
"dev": "NODE_OPTIONS=--max-old-space-size=8192 concurrently \"cd server && docker-compose up\" \"sleep 5 && yarn run dev:server\" \"yarn start:core\" \"sleep 1 && yarn start:client\" \"sleep 5 && yarn run db:seed\" ",
"dev-windows": "cross-env NODE_OPTIONS=--max-old-space-size=8192 concurrently \"cd server && docker-compose up\" \"yarn run dev:server\" \"yarn start:core\" yarn start:client\" yarn run db:seed\" ",
"dev:client": "concurrently \"yarn start:core\" \"sleep 1 && yarn start:client\"",
"dev:server": "lerna exec --scope @latitudegames/thoth-server -- yarn run dev",
"db:seed": "npx sequelize-cli db:seed:all --url 'postgres://thoth:thoth_default_pw@localhost:5432/thoth'",
"start:client": "lerna exec --scope @latitudegames/thoth-client -- yarn start",
"start:sharedb": "lerna exec --scope @latitudegames/thoth-sharedb -- yarn start",
"start": "run-p start:core start:client",
"lint": "lerna run lint --parallel",
"lint:fix": "lerna run lint:fix --parallel",
"build": "copyfiles LICENSE.txt client && lerna exec --scope @latitudegames/thoth-client -- yarn build",
"build:core": "copyfiles LICENSE.txt core && lerna exec --scope @latitudegames/thoth-core -- yarn build",
"publish:canary": "lerna exec --scope @latitudegames/thoth-core -- yarn canary",
"install:canary": "lerna exec --scope @latitudegames/thoth-client -- yarn install:canary"
},
"engines": {
"node": ">=14.17.6",
"npm": ">=6.12.0",
"yarn": "^1.22.10"
},
"resolutions": {
"@types/react": "18.0.0"
},
"devDependencies": {
"@types/wav": "^1.0.1",
"concurrently": "^7.1.0",
"craco": "^0.0.3",
"cross-env": "^7.0.3",
"lerna": "^4.0.0",
"react": "^18.0.0"
},
"dependencies": {
"@discordjs/opus": "^0.7.0",
"@discordjs/voice": "^0.9.0",
"@google-cloud/text-to-speech": "^3.4.0",
"@plotdb/json0": "^0.0.5",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"copyfiles": "^2.4.1",
"diff-match-patch": "^1.0.5",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"ffmpeg-static": "^5.0.0",
"json0-ot-diff": "^1.1.2",
"libsodium-wrappers": "^0.7.10",
"m3u8_multi_downloader": "^1.1.5",
"m3u8-to-mp4": "^1.0.0",
"node-wit": "^6.2.1",
"node-witai-speech": "^1.0.2",
"npm-run-all": "^4.1.5",
"opusscript": "^0.0.8",
"prettier": "^2.4.1",
"prism-media": "^1.3.2",
"sodium": "^3.0.2",
"tweetnacl": "^1.0.3",
"wav": "^1.0.2"
}
}