forked from linode/manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.87 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.87 KB
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
{
"name": "root",
"private": true,
"license": "Apache-2.0",
"devDependencies": {
"audit-ci": "^2.4.2",
"husky": "^3.0.1",
"patch-package": "^6.1.0",
"postinstall": "^0.6.0",
"typescript": "~3.9.2",
"wait-on": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn workspaces run precommit",
"pre-push": "yarn workspace linode-manager prepush"
}
},
"scripts": {
"lint": "yarn run eslint . --quiet --ext .js,.ts,.tsx",
"cost-of-modules": "yarn global add cost-of-modules && cost-of-modules --less --no-install --include-dev",
"install:all": "yarn install --frozen-lockfile",
"upgrade:sdk": "yarn workspace @linode/api-v4 version --no-git-tag-version --no-commit-hooks && yarn workspace linode-manager upgrade @linode/api-v4",
"postinstall": "yarn workspaces run postinstall && patch-package",
"build:sdk": "yarn workspace @linode/api-v4 build",
"build": "yarn build:sdk && yarn workspace linode-manager build",
"build:analyze": "yarn build --bundle-analyze",
"up": "yarn install:all && yarn build:sdk && yarn start:all",
"start:all": "concurrently \"yarn workspace @linode/api-v4 start\" \"yarn workspace linode-manager start\"",
"clean": "rm -rf node_modules && rm -rf packages/@linode/api-v4/node_modules && rm -rf packages/manager/node_modules",
"test": "yarn workspace linode-manager test",
"selenium:install": "yarn workspace linode-manager selenium:install",
"storybook": "yarn workspace linode-manager storybook",
"storybook:e2e": "yarn workspace linode-manager storybook:e2e",
"storybook:debug": "yarn storybook:e2e --color --debug",
"e2e": "yarn workspace linode-manager e2e --color",
"e2e:all": "yarn workspace linode-manager e2e:all --color",
"e2e:modified": "yarn workspace linode-manager e2e:modified --color",
"cy:run": "yarn workspace linode-manager cy:run",
"cy:e2e": "yarn workspace linode-manager cy:e2e",
"cy:debug": "yarn workspace linode-manager cy:debug",
"cy:rec-snap": "yarn workspace linode-manager cy:rec-snap",
"docker:cy": "docker build -t cloudcy -f Dockerfile-e2e . && docker run --rm cloudcy",
"docker:sb": "docker build -t cloudsb -f Dockerfile-storybook . && docker run --rm cloudsb",
"docker:e2e": "docker-compose -f integration-test.yml up --exit-code-from manager-e2e",
"docker:serve": "docker run --rm --name www -p 3000:80 -v $(pwd)/packages/manager/build:/usr/share/nginx/html -v $(pwd)/nginx-e2e.conf:/etc/nginx/conf.d/default.conf:ro -d nginx",
"docker:dev": "docker run --rm -v $(pwd):/usr/src/ -w /usr/src/ -p 3000:3000 node:10-slim yarn up"
},
"resolutions": {
"handlebars": "^4.4.3",
"minimist": "^1.2.3",
"yargs-parser": "^18.1.3",
"kind-of": "^6.0.3",
"dot-prop": "^5.2.0",
"property-expr": "^2.0.3"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"version": "0.0.0"
}