-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.75 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
{
"private": true,
"name": "steamspeak",
"description": "Steam and TeamSpeak integration, done right!",
"workspaces": [
"packages/*"
],
"directories": {
"doc": "docs"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"dev": "concurrently --kill-others --success first \"yarn run dev:server\" \"yarn run start:client\"",
"test": "yarn run test:server && yarn run test:client",
"lint": "yarn run lint:server && yarn run lint:client && yarn run docs:lint",
"test:server": "yarn --cwd ./packages/server test",
"test:client": "yarn --cwd ./packages/client test:unit",
"start:server": "yarn --cwd ./packages/server start",
"dev:server": "yarn --cwd ./packages/server dev",
"start:client": "yarn --cwd ./packages/client serve",
"lint:server": "yarn --cwd ./packages/server lint",
"lint:client": "yarn --cwd ./packages/client run lint",
"build": "lerna run build",
"docs:dev": "yarn --cwd ./docs run start",
"docs:build": "yarn --cwd ./docs run build",
"docs:deploy": "yarn --cwd ./docs run deploy",
"docs:install": "yarn --cwd ./docs install",
"docs:lint": "yarn --cwd ./docs lint",
"docs:prettier": "yarn --cwd ./docs prettier",
"publish": "lerna publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dalexhd/SteamSpeak.git"
},
"author": {
"name": "DalexHD",
"email": "[email protected]",
"url": "https://github.com/dalexhd"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dalexhd/SteamSpeak/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/dalexhd/SteamSpeak#readme",
"devDependencies": {
"concurrently": "^5.1.0",
"lerna": "^3.20.2"
}
}