forked from linode/manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.9 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "root",
"private": true,
"license": "Apache-2.0",
"devDependencies": {
"husky": "^3.0.1",
"npm-run-all": "^4.1.5",
"patch-package": "^6.1.0",
"postinstall": "^0.6.0",
"typescript": "~4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn workspaces run precommit"
}
},
"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": "echo \"Skipping Patching: yarn workspaces run postinstall && patch-package\"",
"build:sdk": "yarn workspace @linode/api-v4 build",
"build:validation": "yarn workspace @linode/validation build",
"build": "yarn build:validation && yarn build:sdk && yarn workspace linode-manager build",
"build:analyze": "yarn build --bundle-analyze",
"up": "yarn install:all && yarn build:validation && yarn build:sdk && yarn start:all",
"dev": "yarn install:all && yarn start:all",
"start:all": "concurrently -n api-v4,validation,manager -c blue,yellow,green \"yarn workspace @linode/api-v4 start\" \"yarn workspace @linode/validation start\" \"yarn workspace linode-manager start\"",
"start:manager": "yarn workspace linode-manager start",
"start:manager:ci": "yarn workspace linode-manager start:ci",
"clean": "rm -rf node_modules && rm -rf packages/@linode/api-v4/node_modules && rm -rf packages/manager/node_modules && rm -rf packages/@linode/validation/node_modules",
"test": "yarn workspace linode-manager test --maxWorkers=4",
"package-versions": "node ./scripts/package-versions/index.js",
"storybook": "yarn workspace linode-manager storybook",
"cy:run": "yarn workspace linode-manager cy:run",
"cy:e2e": "yarn workspace linode-manager cy:e2e",
"cy:ci": "yarn cypress install && yarn cy:e2e",
"cy:debug": "yarn workspace linode-manager cy:debug",
"cy:rec-snap": "yarn workspace linode-manager cy:rec-snap"
},
"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",
"csv-parse": "^4.6.3",
"node-fetch": "^2.6.7",
"y18n": "^4.0.0",
"ua-parser-js": "^0.7.33",
"trim": "^0.0.3",
"prismjs": "^1.24.0",
"immer": "^9.0.6",
"lodash": "^4.17.21",
"glob-parent": "^5.1.2",
"browserslist": "^4.16.5",
"trim-newlines": "^4.0.2",
"hosted-git-info": "^5.0.0",
"minimatch": "^3.0.5",
"nth-check": "^2.0.1",
"@types/react": "^17",
"loader-utils": "^2.0.4"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"version": "0.0.0",
"volta": {
"node": "18.14.1"
}
}