forked from gravitational/webapps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.68 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": "namespaces",
"version": "1.0.0",
"main": "index.js",
"license": "Apache-2.0",
"scripts": {
"storybook": "start-storybook -p 9002 -c .storybook",
"test": "jest",
"test-coverage": "jest --coverage && scripts/print-coverage-link.sh",
"tdd": "jest --watch",
"package-term": "yarn workspace @gravitational/teleterm package",
"build-term": "yarn workspace @gravitational/teleterm build",
"build-and-package-term": "yarn build-term && yarn package-term",
"start-term": "yarn workspace @gravitational/teleterm start",
"start-teleport": "yarn workspace @gravitational/teleport start",
"start-teleport-e": "yarn workspace @gravitational/teleport.e start",
"build-teleport": "yarn build-teleport-oss && yarn build-teleport-e",
"build-teleport-oss": "yarn workspace @gravitational/teleport build --output-path=../../dist/teleport/app",
"build-teleport-e": "yarn workspace @gravitational/teleport.e build --output-path=../../../dist/e/teleport/app",
"build-oss": "yarn build-teleport-oss",
"build-e": "yarn build-teleport-e",
"lint": "yarn prettier-check && yarn eslint",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx packages/",
"type-check": "tsc --noEmit",
"prettier-check": "yarn prettier --check 'packages/**/*.{ts,tsx,js,jsx,md}'",
"prettier-write": "yarn prettier --write 'packages/**/*.{ts,tsx,js,jsx,md}'"
},
"private": true,
"resolutions": {
"**/minimist": "^1.2.5",
"**/node-gyp": "8.4.1"
},
"workspaces": {
"packages": [
"packages/build/**",
"packages/design/**",
"packages/shared/**",
"packages/teleport",
"packages/webapps*/**",
"packages/teleterm"
]
}
}