-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.35 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
{
"name": "laniakea",
"description": "Not a real npm package, this file just wraps the monorepo packages with some bootstrap and commands",
"version": "0.0.1",
"private": true,
"scripts": {
"bootstrap": "yarn install && lerna bootstrap",
"build": "lerna run build",
"clean": "lerna exec --parallel -- rimraf dist",
"demo": "multiview [yarn run demo:server] [yarn run demo:client]",
"demo:client": "cd demos/pong/client && yarn run start",
"demo:server": "cd demos/pong/server && yarn run start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lerna": "./node_modules/.bin/lerna",
"prettier:write": "prettier --write .",
"typedoc": "typedoc --options typedoc.json",
"unit-test": "lerna exec -- yarn run test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.3.0",
"lerna": "^4.0.0",
"multiview": "^3.0.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"split": "^1.0.1",
"typedoc": "^0.20.32",
"typedoc-plugin-nojekyll": "^1.0.1",
"typescript": "^4.2.3"
},
"workspaces": [
"demos/balls/*",
"demos/pong/*",
"packages/@laniakea/*",
"tests/*"
],
"dependencies": {}
}