This repository has been archived by the owner on Aug 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
58 lines (58 loc) · 1.98 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
{
"name": "@thoth/root",
"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": [
"packages/*"
]
},
"resolutions": {
"@types/react": "17.0.2"
},
"scripts": {
"start:core": "lerna exec --scope @latitudegames/thoth-core -- yarn start",
"start:client": "lerna exec --scope @thoth/client -- yarn start",
"stop:client": "lerna exec --scope @thoth/client -- yarn stop",
"start:sharedb": "lerna exec --scope @thoth/sharedb -- yarn start",
"start:runner": "lerna exec --scope @thoth/runner -- 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 @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 @thoth/client -- yarn install:canary",
"nukefromorbit": "rimraf ./packages/**/node_modules && rimraf ./node_modules"
},
"engines": {
"node": ">=14.17.6",
"npm": ">=6.12.0",
"yarn": "^1.18.0"
},
"devDependencies": {
"craco": "^0.0.3",
"lerna": "^4.0.0",
"rimraf": "^3.0.2"
},
"dependencies": {
"@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",
"json0-ot-diff": "^1.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1"
}
}